Update src/app/layout.tsx

This commit is contained in:
2026-02-19 18:13:27 +00:00
parent 5beec92abe
commit 8bdce3bb85

View File

@@ -1,24 +1,24 @@
import type { Metadata } from "next";
import { Lora } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lora = Lora({
variable: "--font-lora", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Blue Forest Project | Student-Led Kelp Restoration", description: "Real students, real science, real impact. A transparent kelp restoration project starting in San Diego. Restoring ocean ecosystems from the ground up.", keywords: ["kelp restoration", "ocean conservation", "student science", "environmental research", "marine biology", "sustainability"],
title: "Seatrees | Ocean Restoration Made Simple", description: "Join the global movement to restore ocean ecosystems. Plant trees, protect marine habitats, and make a real impact with Seatrees.", keywords: ["ocean restoration", "marine conservation", "environmental impact", "seagrass restoration", "coral reefs", "sustainability"],
openGraph: {
title: "Blue Forest Project", description: "Student-led kelp restoration changing San Diego's ocean ecosystem", type: "website", siteName: "Blue Forest Project", images: [
title: "Seatrees", description: "Restore ocean ecosystems with purpose and transparency", type: "website", siteName: "Seatrees", images: [
{
url: "https://img.b2bpic.net/free-photo/wide-underwater-shot-green-brown-coral-reefs_181624-1317.jpg", alt: "Kelp forest restoration project"
url: "https://img.b2bpic.net/free-photo/wide-underwater-shot-green-brown-coral-reefs_181624-1317.jpg", alt: "Ocean restoration"
}
]
},
twitter: {
card: "summary_large_image", title: "Blue Forest Project", description: "Restoring kelp forests, one student at a time", images: ["https://img.b2bpic.net/free-photo/wide-underwater-shot-green-brown-coral-reefs_181624-1317.jpg"]
card: "summary_large_image", title: "Seatrees", description: "Restore the ocean, one action at a time", images: ["https://img.b2bpic.net/free-photo/wide-underwater-shot-green-brown-coral-reefs_181624-1317.jpg"]
}
};
@@ -30,9 +30,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={lora.variable}
>
<body className={inter.variable}>
<Tag />
{children}
@@ -1406,4 +1404,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}