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
39 changes: 39 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@huggingface/inference": "^2.6.4",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.38.4",
"@vercel/analytics": "^1.6.1",
"framer-motion": "^10.16.16",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
Expand Down
90 changes: 46 additions & 44 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';

const inter = Inter({ subsets: ['latin'] });

export const metadata: Metadata = {
title: 'LifeWeeks - Your Life in 4,000 Weeks',
description: 'Visualize your life week by week with AI-powered insights, personal narratives, and historical context. Map your journey through time.',
keywords: 'life timeline, personal development, AI insights, life visualization, weekly planner',
authors: [{ name: 'LifeWeeks Team' }],
metadataBase: new URL('https://lifeweeks.vercel.app'),
openGraph: {
title: 'LifeWeeks - Your Life in 4,000 Weeks',
description: 'Visualize your life week by week with AI-powered insights and historical context.',
type: 'website',
locale: 'en_US',
},
twitter: {
card: 'summary_large_image',
title: 'LifeWeeks - Your Life in 4,000 Weeks',
description: 'Visualize your life week by week with AI-powered insights and historical context.',
},
};

export const viewport = {
width: 'device-width',
initialScale: 1,
themeColor: '#3b82f6',
};

export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className="scroll-smooth">
<body className={`${inter.className} min-h-screen bg-white antialiased`}>
{children}
</body>
</html>
);
}
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import { Analytics } from '@vercel/analytics/next';
import './globals.css';

const inter = Inter({ subsets: ['latin'] });

export const metadata: Metadata = {
title: 'LifeWeeks - Your Life in 4,000 Weeks',
description: 'Visualize your life week by week with AI-powered insights, personal narratives, and historical context. Map your journey through time.',
keywords: 'life timeline, personal development, AI insights, life visualization, weekly planner',
authors: [{ name: 'LifeWeeks Team' }],
metadataBase: new URL('https://lifeweeks.vercel.app'),
openGraph: {
title: 'LifeWeeks - Your Life in 4,000 Weeks',
description: 'Visualize your life week by week with AI-powered insights and historical context.',
type: 'website',
locale: 'en_US',
},
twitter: {
card: 'summary_large_image',
title: 'LifeWeeks - Your Life in 4,000 Weeks',
description: 'Visualize your life week by week with AI-powered insights and historical context.',
},
};

export const viewport = {
width: 'device-width',
initialScale: 1,
themeColor: '#3b82f6',
};

export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className="scroll-smooth">
<body className={`${inter.className} min-h-screen bg-white antialiased`}>
{children}
<Analytics />
</body>
</html>
);
}