From 572a1daa81b80365dfe15f994f23c2af71489cc9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:38:28 +0000 Subject: [PATCH 1/5] Add src/app/blog/page.tsx --- src/app/blog/page.tsx | 109 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 src/app/blog/page.tsx diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..7ea8f65 --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,109 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Send } from 'lucide-react'; + +export default function BlogPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From dbd6e033aa68a44fde89c50946f1520352319bf4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:38:28 +0000 Subject: [PATCH 2/5] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 80 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..e6c5e9f --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,80 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Send } from 'lucide-react'; + +export default function ContactPage() { + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1 From a2d31aa6642367bd780d15513005495779ec088b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:38:29 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++----------------------------------------- 1 file changed, 5 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0145f8d..770529b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Deeksha R | AI/ML Specialist Portfolio", description: "Explore the portfolio of Deeksha R, an AI/ML specialist from VVIT showcasing expertise in neural networks, computer vision, and machine learning applications.", keywords: "AI specialist, machine learning, neural networks, computer vision, Python, TensorFlow, PyTorch, AI portfolio", metadataBase: new URL("https://deeksha-r-portfolio.com"), - alternates: { - canonical: "https://deeksha-r-portfolio.com"}, - openGraph: { - title: "Deeksha R | AI/ML Specialist", description: "High-end AI/ML portfolio featuring cutting-edge projects and technical expertise", url: "https://deeksha-r-portfolio.com", siteName: "Deeksha R", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ9A7LP3KK4Fxf4QN4gJh0YJdn/a-rotating-glass-sphere-with-neural-netw-1772789158666-f60d91c2.png", alt: "AI/ML Portfolio 3D Hero"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Deeksha R | AI/ML Specialist", description: "Explore cutting-edge AI and machine learning projects", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ9A7LP3KK4Fxf4QN4gJh0YJdn/a-rotating-glass-sphere-with-neural-netw-1772789158666-f60d91c2.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Deeksha R | AI/ML Specialist", description: "Portfolio of Deeksha R, AI/ML Specialist at Vijaya Vittala Institute of Technology"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}