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
12 changes: 0 additions & 12 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,6 @@ import "./globals.css";
const SITE_ORIGIN = "https://setline.significanthobbies.com";
const description =
"Build the plan once. Follow it precisely every day with guided sets, rest timing, and device-local workout history.";
const structuredData = {
"@context": "https://schema.org",
"@type": "SoftwareApplication",
name: "Setline",
applicationCategory: "HealthApplication",
operatingSystem: "Web",
url: `${SITE_ORIGIN}/`,
image: `${SITE_ORIGIN}/og.png`,
description,
sameAs: ["https://github.com/Significant-Hobbies/setline"],
};

export async function generateMetadata(): Promise<Metadata> {
const requestHeaders = await headers();
const host =
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"db:migrate:local": "wrangler d1 migrations apply setline --local",
"db:migrate:remote": "wrangler d1 migrations apply setline --remote",
"deploy": "pnpm run check && wrangler deploy --config dist/server/wrangler.json --tag \"$(git rev-parse HEAD)\"",
"test": "pnpm run build && node --test tests/*.test.mjs",
"test": "pnpm run build && node --test --test-concurrency=1 tests/*.test.mjs",
"lint": "eslint . --ignore-pattern dist --ignore-pattern .next"
},
"dependencies": {
Expand Down
Loading