Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run build
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
Expand Down
37 changes: 37 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import {
base,
betterTailwind,
guardrails,
ignores,
prettier,
react,
styleHygiene,
} from '@gaia-react/lint';
import {defineConfig} from 'eslint/config';

export default defineConfig([
...ignores({gitignore: '.gitignore'}),
...base,
...react,
...styleHygiene,
...guardrails,
...betterTailwind({
entryPoint: './src/styles.css',
}),
...prettier,
{
rules: {
'unicorn/prevent-abbreviations': [
'error',
{
replacements: {
doc: false,
docs: false,
env: false,
envs: false,
},
},
],
},
},
]);
23 changes: 19 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,39 @@
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gaiareact.com" />
<meta property="og:title" content="GAIA: The React workflow for Claude" />
<meta property="og:description" content="Claude is raw power. GAIA is order and focus. A React workflow that makes Claude trustworthy enough to own features end to end, and sharp at any scale." />
<meta
property="og:description"
content="Claude is raw power. GAIA is order and focus. A React workflow that makes Claude trustworthy enough to own features end to end, and sharp at any scale."
/>
<meta property="og:image" content="https://gaiareact.com/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="GAIA. The React workflow for Claude" />
<meta
property="og:image:alt"
content="GAIA. The React workflow for Claude"
/>

<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GAIA: The React workflow for Claude" />
<meta name="twitter:description" content="Claude is raw power. GAIA is order and focus. A React workflow that makes Claude trustworthy enough to own features end to end, and sharp at any scale." />
<meta
name="twitter:description"
content="Claude is raw power. GAIA is order and focus. A React workflow that makes Claude trustworthy enough to own features end to end, and sharp at any scale."
/>
<meta name="twitter:image" content="https://gaiareact.com/og-image.png" />
<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=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&display=swap"
rel="stylesheet"
/>
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "6f7c78ef42fc47e59eea029941f332b3"}'></script><!-- End Cloudflare Web Analytics -->
<!-- Cloudflare Web Analytics -->
<script
defer
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "6f7c78ef42fc47e59eea029941f332b3"}'
></script>
<!-- End Cloudflare Web Analytics -->
</head>
<body>
<div id="root"></div>
Expand Down
Loading