Skip to content

Commit 117bf27

Browse files
committed
Updates
1 parent 1815501 commit 117bf27

11 files changed

+61
-14
lines changed

asset-manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"files": {
3-
"main.css": "/static/css/main.ae41281a.css",
4-
"main.js": "/static/js/main.7c5161fc.js",
3+
"main.css": "/static/css/main.c888588b.css",
4+
"main.js": "/static/js/main.452a15e6.js",
55
"static/js/453.f568ff1d.chunk.js": "/static/js/453.f568ff1d.chunk.js",
66
"index.html": "/index.html",
7-
"main.ae41281a.css.map": "/static/css/main.ae41281a.css.map",
8-
"main.7c5161fc.js.map": "/static/js/main.7c5161fc.js.map",
7+
"main.c888588b.css.map": "/static/css/main.c888588b.css.map",
8+
"main.452a15e6.js.map": "/static/js/main.452a15e6.js.map",
99
"453.f568ff1d.chunk.js.map": "/static/js/453.f568ff1d.chunk.js.map"
1010
},
1111
"entrypoints": [
12-
"static/css/main.ae41281a.css",
13-
"static/js/main.7c5161fc.js"
12+
"static/css/main.c888588b.css",
13+
"static/js/main.452a15e6.js"
1414
]
1515
}

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en" class="dark"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><link rel="icon" type="image/svg+xml" href="/favicon.svg"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="codex by fezcode..."/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet"><link href="https://fonts.googleapis.com/css2?family=Arvo&family=Inter&family=Playfair+Display&display=swap" rel="stylesheet"><title>fezcodex</title><script defer="defer" src="/static/js/main.7c5161fc.js"></script><link href="/static/css/main.ae41281a.css" rel="stylesheet"></head><body class="bg-slate-950"><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1+
<!doctype html><html lang="en" class="dark"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><link rel="icon" type="image/svg+xml" href="/favicon.svg"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="codex by fezcode..."/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet"><link href="https://fonts.googleapis.com/css2?family=Arvo&family=Inter&family=Playfair+Display&display=swap" rel="stylesheet"><title>fezcodex</title><script defer="defer" src="/static/js/main.452a15e6.js"></script><link href="/static/css/main.c888588b.css" rel="stylesheet"></head><body class="bg-slate-950"><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

posts/gemini-react-components.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Gemini's Guide to React - Understanding Components
2+
3+
In this second part of Gemini's Guide to React, we'll focus on one of React's most fundamental concepts: Components.
4+
5+
Components are independent, reusable bits of code. They serve the same purpose as JavaScript functions, but work in isolation and return HTML via a render function. Components come in two types: Class Components and Functional Components. Modern React development primarily uses Functional Components with Hooks.
6+
7+
Example of a Functional Component:
8+
9+
```jsx
10+
import React from 'react';
11+
12+
function Welcome(props) {
13+
return <h1>Hello, {props.name}</h1>;
14+
}
15+
16+
export default Welcome;
17+
```
18+
19+
Next, we'll explore JSX and how it makes writing React components more intuitive.

posts/gemini-react-intro.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Gemini's Guide to React - Introduction
2+
3+
Welcome to the first part of Gemini's Guide to React! In this series, we'll explore the fundamentals of React, starting with what React is and why it's so popular.
4+
5+
React is a JavaScript library for building user interfaces. It allows developers to create large web applications that can change data without reloading the page. Its main purpose is to build fast and scalable UIs.
6+
7+
Key concepts we'll cover:
8+
- Components
9+
- JSX
10+
- State and Props
11+
12+
Stay tuned for the next part where we'll dive into Components!

posts/shownPosts.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,21 @@
7474
"updated": "2025-10-13",
7575
"tags": ["writing", "updates"],
7676
"category": "rant"
77+
},
78+
{
79+
"slug": "gemini-react-intro",
80+
"title": "Introduction",
81+
"date": "2024-01-01",
82+
"series": "Gemini's Guide to React",
83+
"seriesIndex": 1,
84+
"category": "dev"
85+
},
86+
{
87+
"slug": "gemini-react-components",
88+
"title": "Understanding Components",
89+
"date": "2024-01-05",
90+
"series": "Gemini's Guide to React",
91+
"seriesIndex": 2,
92+
"category": "dev"
7793
}
7894
]
Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/main.452a15e6.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)