Merge version_2 into main #7

Merged
bender merged 2 commits from version_2 into main 2026-03-09 22:44:39 +00:00
2 changed files with 13 additions and 45 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -236,7 +236,7 @@ export default function LandingPage() {
<ProductCardTwo
products={productItems}
title="Featured Tools & Resources"
description="Powerful applications and external resources for your research."
description="Free, ready-to-use analysis tools designed for researchers at every level"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}