diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4359df4..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Goalify - Goal-Based Social Network for Gen-Z", description: "Chase your goals together. Track progress, celebrate wins, and connect with a vibrant Gen-Z community of goal-chasers. Free goal tracking and social accountability.", keywords: "goal tracking, social network, Gen-Z, achievement, community, goals app", metadataBase: new URL("https://goalify.com"), - alternates: { - canonical: "https://goalify.com"}, - openGraph: { - title: "Goalify - Chase Your Goals, Together", description: "A goal-based social network designed for Gen-Z. Track, share, and celebrate your achievements with a supportive community.", url: "https://goalify.com", siteName: "Goalify", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/group-young-african-friends-with-facemasks-using-their-phones-park_181624-44190.jpg", alt: "Goalify - Goal tracking platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Goalify - Chase Your Goals, Together", description: "Goal tracking meets community. Track your progress and celebrate wins with Gen-Z goal-chasers worldwide.", images: ["http://img.b2bpic.net/free-photo/group-young-african-friends-with-facemasks-using-their-phones-park_181624-44190.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +