From 602448a81ac3cdb1fd0c53284787edee6dbe3c34 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 06:55:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1426 -------------------------------------------- 1 file changed, 1426 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c749980..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Prakash Subedi - CS Student & Data Science Portfolio", description: "Computer Science student at Algoma University. Portfolio showcasing data analysis projects, technical skills in Python, SQL, NumPy, and Pandas. Preparing for technical interviews and internship opportunities.", keywords: "computer science, data science, portfolio, python, sql, pandas, numpy, algoma university, internship, technical interview", metadataBase: new URL("https://prakashsubedi.com"), - alternates: { - canonical: "https://prakashsubedi.com"}, - openGraph: { - title: "Prakash Subedi - CS Student & Aspiring Data Scientist", description: "Explore my technical portfolio showcasing data analysis projects and professional development work.", url: "https://prakashsubedi.com", siteName: "Prakash Subedi Portfolio", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVxR2oMtlqxgzKOvPVVuOfL7jp/professional-headshot-of-a-computer-scie-1772693211399-74c35fdc.png", alt: "Prakash Subedi - Computer Science Student"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Prakash Subedi - CS Student & Data Science Portfolio", description: "Computer Science student showcasing technical skills and projects. Seeking internship opportunities in data science and software development.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVxR2oMtlqxgzKOvPVVuOfL7jp/professional-headshot-of-a-computer-scie-1772693211399-74c35fdc.png"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -