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 (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
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 (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
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}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index c408874..ba7b7e6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -61,8 +61,8 @@ export default function LandingPage() {
}
]}
buttons={[
- { text: "Explore My Work", href: "#projects" },
- { text: "Get In Touch", href: "#contact" }
+ { text: "Explore My Work", href: "/projects" },
+ { text: "Get In Touch", href: "/contact" }
]}
/>
@@ -196,15 +196,15 @@ export default function LandingPage() {
{
title: "Projects", items: [
{ label: "Predict My Movie", href: "https://preview--predict-my-movie.lovable.app/" },
- { label: "Sign Language AI", href: "#projects" },
- { label: "Tech Hub", href: "#projects" }
+ { label: "Sign Language AI", href: "/projects" },
+ { label: "Tech Hub", href: "/projects" }
]
},
{
title: "Resources", items: [
- { label: "Blog", href: "#" },
+ { label: "Blog", href: "/blog" },
{ label: "Documentation", href: "#" },
- { label: "Contact", href: "#contact" }
+ { label: "Contact", href: "/contact" }
]
}
]}
diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx
new file mode 100644
index 0000000..8577a3b
--- /dev/null
+++ b/src/app/projects/page.tsx
@@ -0,0 +1,112 @@
+"use client";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import ProductCardOne from '@/components/sections/product/ProductCardOne';
+import ContactCenter from '@/components/sections/contact/ContactCenter';
+import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+import { Send } from 'lucide-react';
+
+export default function ProjectsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}