diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f9a9e3d..0d8d6df 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,23 @@ 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 { Poppins } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const poppins = Poppins({ + subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Warmindo Poernama - Tempat Nongkrong Terbaik Condet | Indomie & Kopi Murah", description: "Warmindo Poernama adalah tempat nongkrong favorit mahasiswa di Condet dengan suasana vintage aesthetic, menu Indomie lezat, WiFi gratis, dan harga terjangkau. Cocok untuk belajar, hangout, dan bermain board games.", keywords: "Warmindo Condet, Indomie Condet, tempat nongkrong Condet, kafe murah Condet, tempat nugas, Warmindo aesthetic, mahasiswa hangout", metadataBase: new URL("https://warmindopoernama.com"), - alternates: { - canonical: "https://warmindopoernama.com"}, - openGraph: { - title: "Warmindo Poernama - Tempat Nongkrong Favorit Condet", description: "Indomie murah, WiFi gratis, suasana vintage yang cozy. Tempat terbaik untuk nongkrong, belajar, dan berkumpul teman-teman.", url: "https://warmindopoernama.com", siteName: "Warmindo Poernama", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/still-life-vintage-objects_23-2150244547.jpg", alt: "Warmindo Poernama - Tempat Nongkrong Favorite"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Warmindo Poernama - Nongkrong, Makan, Belajar", description: "Indomie murah, suasana cozy, WiFi gratis. Tempat nongkrong terbaik untuk mahasiswa di Condet.", images: ["http://img.b2bpic.net/free-photo/still-life-vintage-objects_23-2150244547.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Warmindo Poernama - Tempat Nongkrong Terbaik di Condet", description: "Warmindo modern dengan suasana vintage. Indomie, kopi, WiFi gratis, board games, dan parkir luas. Tempat favorit mahasiswa untuk nongkrong dan nugas."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}