diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cc031ea..a6d323c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Desa Campurejo - Coastal Village, Gresik East Java", description: "Discover Desa Campurejo in Gresik, East Java. Explore our fishing heritage, cultural traditions, and modern development initiatives transforming our coastal community.", keywords: "Desa Campurejo, Gresik, East Java, fishing village, coastal community, Petik Laut, Indonesia", openGraph: { - title: "Desa Campurejo - Coastal Community in East Java", description: "United by the Sea, Growing Together. Experience the maritime heritage and vibrant community of Desa Campurejo.", url: "https://desacampurejo.gresikkab.go.id", siteName: "Desa Campurejo", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/boat-water-sunset-ocean-background_1321-3254.jpg", alt: "Desa Campurejo coastal view" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Desa Campurejo - Coastal Village Gresik", description: "Discover traditions, culture, and community development in East Java's vibrant coastal village.", images: ["http://img.b2bpic.net/free-photo/boat-water-sunset-ocean-background_1321-3254.jpg"] - } -}; + title: "Desa Campurejo - Coastal Village Heritage", description: "Discover the maritime heritage, vibrant fishing culture, and community spirit of Desa Campurejo in Gresik, East Java."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}