diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 3c9b63c..c25fee3 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -165,7 +165,7 @@ const DashboardPage = () => { "Post your launch in the Buildora community. Collect feedback, iterate, and track visits. Community validation is your first customer signal.", }, ]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/weekly-missions-ui-showing-checklist-val-1773427362335-f5750f54.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/weekly-missions-ui-showing-checklist-val-1773427362335-f5750f54.png?_wi=2" imageAlt="Weekly missions UI" mediaAnimation="slide-up" useInvertedBackground={true} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..cb98922 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Buildora - Founder Operating System", + description: "Go from idea to first revenue. Daily founder streaks, weekly missions, AI mentorship, and a thriving builder community. Your complete startup platform.", + keywords: "founder platform, startup journey, MVP builder, entrepreneurship, indie hackers, first revenue, founder community", + metadataBase: new URL("https://buildora.io"), + alternates: { + canonical: "https://buildora.io" + }, + openGraph: { + title: "Buildora - Founder Operating System", + description: "Go from idea to first revenue with daily missions, AI mentorship, and founder streaks.", + url: "https://buildora.io", + siteName: "Buildora", + type: "website", + images: [ + { + url: "https://buildora.io/og-image.png", + alt: "Buildora - Founder Operating System" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Buildora - Founder Operating System", + description: "Go from idea to first revenue with daily missions, AI mentorship, and founder community.", + images: ["https://buildora.io/twitter-image.png"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}