Skip to content
Draft
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
25 changes: 24 additions & 1 deletion bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions lunaria.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"$schema": "./node_modules/@lunariajs/core/config.schema.json",
"repository": {
"name": "FyraStack/homepage"
},
"defaultLocale": {
"label": "English",
"lang": "en"
},
"locales": [
{
"label": "Placeholder",
"lang": "ph"
}
],
"files": [
{
"location": "src/routes/docs/**/*.{svx}",
"pattern": "src/routes/docs/@lang/@path",
"type": "universal"
}
],
"dashboard": {
"title": "Fyra Stack Docs Translation Status",
"description": "Translation progress tracker for the Fyra Stack documentation site. See what we currently have, and feel free to help!",
"favicon": {
"external": [
{
"link": "https://fyrastack.com/favicon.svg",
"type": "image/svg+xml"
}
]
},
"ui": {
"statusByLocale.heading": "Translation progress by locale",
"statusByLocale.incompleteLocalizationLink": "Incomplete",
"statusByLocale.outdatedLocalizationLink": "Outdated",
"statusByLocale.completeLocalization": "Complete!",
"statusByFile.heading": "Translation status by file"
}
}
}
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"dependencies": {
"@lunariajs/core": "^0.1.1",
"@steeze-ui/carbon-icons": "^1.2.1",
"@steeze-ui/svelte-icon": "^1.6.2",
"@tailwindplus/elements": "^1.0.22",
Expand Down Expand Up @@ -77,9 +78,11 @@
"cf-typegen": "wrangler types",
"fix": "ultracite fix",
"test": "bunx playwright install chromium && bunx playwright test",
"test:ci": "bunx playwright test"
"test:ci": "bunx playwright test",
"lunaria:build": "lunaria build",
"lunaria:preview": "lunaria preview"
},
"type": "module",
"version": "0.0.1",
"private": true
}
}
2 changes: 1 addition & 1 deletion src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@

<!-- Stat strip -->
<div class="grid grid-cols-1 gap-px border-b border-fyra-gray-800 bg-fyra-gray-800 md:grid-cols-3">
{#each [{ value: 'Midwest proud', label: 'Chicago, IL' }, { value: 'Independent', label: 'Backed by Fyra Labs' }, { value: 'ASN AS402292', label: 'Since 2026' }] as stat (stat.label)}
{#each [{ value: 'Midwest proud', label: 'Chicago, IL' }, { value: 'Independent', label: 'Backed by Fyra Labs' }, { value: 'AS402292', label: 'Since 2026' }] as stat (stat.label)}
<div class="flex flex-col gap-0.5 bg-fyra-gray-900 px-6 py-6 md:px-10">
<span class="text-base font-semibold tracking-tight text-fyra-gray-50">{stat.value}</span>
<span class="text-[12px] text-fyra-gray-400">{stat.label}</span>
Expand Down