From 0b0edb43704519ae4576c011880070414702ecbc Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 08:10:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1414 +------------------------------------------- 1 file changed, 6 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2a418f8..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Biotech Student Portfolio | Research & Lab Expertise", description: "Biotech student portfolio showcasing research projects, molecular biology expertise, lab certifications, and academic achievements. Impress biotech recruiters and academic advisors.", keywords: "biotech student, research portfolio, molecular biology, lab work, life sciences, research projects", metadataBase: new URL("https://biotechstudent-portfolio.com"), - alternates: { - canonical: "https://biotechstudent-portfolio.com" - }, - openGraph: { - title: "Biotech Student Portfolio | Research & Lab Expertise", description: "Explore my lab projects, technical skills, and published research. I combine molecular biology expertise with clear communication to solve real problems in biotechnology.", url: "https://biotechstudent-portfolio.com", siteName: "Biotech Student Portfolio", images: [ - { - url: "http://img.b2bpic.net/free-photo/laboratory-worker-examining-substance-petri-dishes-while-conducting-coronavirus-research_181624-946.jpg", alt: "Biotech laboratory workspace" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "Biotech Student Portfolio | Research & Lab Expertise", description: "Explore my lab projects, technical skills, and published research in biotechnology.", images: ["http://img.b2bpic.net/free-photo/laboratory-worker-examining-substance-petri-dishes-while-conducting-coronavirus-research_181624-946.jpg"] - }, - 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} - -