diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a931257..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Halant } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Mangrovedopsi Foundation - Restore Mangrove Ecosystems", description: "Adopt mangrove trees and support coastal ecosystem restoration in Indonesia. Join Mangrovedopsi in fighting climate change through reforestation.", keywords: "mangrove restoration, mangrove adoption, reforestation Indonesia, coastal conservation, climate action", metadataBase: new URL("https://mangrovedopsi.com"), - alternates: { - canonical: "https://mangrovedopsi.com"}, - openGraph: { - title: "Mangrovedopsi Foundation - Restore Mangrove Ecosystems", description: "Adopt mangrove trees and support coastal ecosystem restoration in Indonesia.", url: "https://mangrovedopsi.com", siteName: "Mangrovedopsi Foundation", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/broad-river-close-black-river-jamaica-exotic-landscape-mangroves_333098-202.jpg", alt: "Mangrove forest ecosystem"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Mangrovedopsi Foundation - Restore Mangrove Ecosystems", description: "Adopt mangrove trees and make environmental impact.", images: ["http://img.b2bpic.net/free-photo/broad-river-close-black-river-jamaica-exotic-landscape-mangroves_333098-202.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} +