From 23a2743ab717efa3392562688a31e1607212c5e4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:44:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ad2419e..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "LUVI - Anthropology & Genetics Research Hub", description: "Explore cutting-edge research at the intersection of human evolution and genomic science. Access research papers, guides, and tools.", keywords: "anthropology, genetics, DNA research, human evolution, genomics, research hub", metadataBase: new URL("https://luvi.research"), - alternates: { - canonical: "https://luvi.research" - }, - openGraph: { - title: "LUVI - Anthropology × Genetics Research Hub", description: "Discover breakthrough research connecting anthropology and genetics.", url: "https://luvi.research", siteName: "LUVI", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aar8UWmdofEYV94gMwjE1Oe6rb/a-modern-research-laboratory-environment-1772841576692-81385cf9.png", alt: "LUVI Research Hub" - } - ] - }, - twitter: { - card: "summary_large_image", title: "LUVI - Research Hub", description: "Anthropology meets genetics. Explore cutting-edge research.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aar8UWmdofEYV94gMwjE1Oe6rb/a-modern-research-laboratory-environment-1772841576692-81385cf9.png"] - }, - 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} +