Merge version_1 into main #1
@@ -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}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +84,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -197,7 +197,7 @@ const HomePage = () => {
|
||||
"Compete with other founders. Mission completion counts toward weekly rankings. Earn recognition and build credibility in the community.",
|
||||
},
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="Weekly missions UI"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -223,7 +223,7 @@ const HomePage = () => {
|
||||
name: "Idea Created",
|
||||
price: "Day 1",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png?_wi=1",
|
||||
imageAlt: "Idea milestone",
|
||||
},
|
||||
{
|
||||
@@ -231,7 +231,7 @@ const HomePage = () => {
|
||||
name: "Market Validation",
|
||||
price: "Day 3-7",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png?_wi=2",
|
||||
imageAlt: "Validation milestone",
|
||||
},
|
||||
{
|
||||
@@ -239,7 +239,7 @@ const HomePage = () => {
|
||||
name: "MVP Built",
|
||||
price: "Day 14-30",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png?_wi=3",
|
||||
imageAlt: "MVP milestone",
|
||||
},
|
||||
{
|
||||
@@ -247,7 +247,7 @@ const HomePage = () => {
|
||||
name: "First Customer",
|
||||
price: "Day 30-60",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png?_wi=4",
|
||||
imageAlt: "First customer milestone",
|
||||
},
|
||||
{
|
||||
@@ -255,7 +255,7 @@ const HomePage = () => {
|
||||
name: "First Revenue",
|
||||
price: "Day 60-90",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png?_wi=5",
|
||||
imageAlt: "First revenue milestone",
|
||||
},
|
||||
{
|
||||
@@ -263,7 +263,7 @@ const HomePage = () => {
|
||||
name: "Revenue Growth",
|
||||
price: "Day 90+",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaiLUw7FBIEYMWIp2BtbVvUuaH/visual-representation-of-founder-journey-1773427363045-4a0b204d.png?_wi=6",
|
||||
imageAlt: "Growth milestone",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user