8 Commits

Author SHA1 Message Date
8e474839d5 Update src/app/page.tsx 2026-03-04 12:09:44 +00:00
eef725e23d Update src/app/layout.tsx 2026-03-04 12:09:43 +00:00
28e0247da4 Merge version_2 into main
Merge version_2 into main
2026-03-04 12:07:10 +00:00
585f6bbd96 Update src/app/page.tsx 2026-03-04 12:07:06 +00:00
5078d4edb8 Update src/app/layout.tsx 2026-03-04 12:07:05 +00:00
0e63eea57d Merge version_1 into main
Merge version_1 into main
2026-03-04 11:56:18 +00:00
4955619679 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:55:18 +00:00
13f9335169 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:53:47 +00:00
2 changed files with 17 additions and 44 deletions

View File

@@ -1,54 +1,28 @@
import type { Metadata } from "next";
import { Source_Sans_3 } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Your Name - College Portfolio & Projects", description: "Explore my college portfolio showcasing web design, development, and creative projects. Connect with me for collaboration opportunities.", keywords: "college portfolio, student developer, web design, projects, skills", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Your Name - College Portfolio", description: "Showcasing academic excellence through innovative projects and digital solutions.", type: "website", siteName: "Your College Portfolio", images: [
{
url: "http://img.b2bpic.net/free-photo/designer-desk-architectural-tools-notebook-working-place-concept_53876-123770.jpg", alt: "Portfolio showcase"},
],
},
twitter: {
card: "summary_large_image", title: "Your Name - College Portfolio", description: "Discover my academic projects and professional journey.", images: ["http://img.b2bpic.net/free-photo/designer-desk-architectural-tools-notebook-working-place-concept_53876-123770.jpg"],
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceSans3.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -83,15 +83,15 @@ export default function LandingPage() {
products={[
{
id: "1", brand: "Web Design", name: "E-Commerce Platform Redesign", price: "2024", rating: 5,
reviewCount: "A+", imageSrc: "http://img.b2bpic.net/free-vector/social-page-application-ui-design-concept_1284-45234.jpg?_wi=1", imageAlt: "E-commerce platform redesign project"
reviewCount: "React + Stripe integration, 40% faster checkout flow", imageSrc: "http://img.b2bpic.net/free-vector/social-page-application-ui-design-concept_1284-45234.jpg?_wi=1", imageAlt: "E-commerce platform redesign project"
},
{
id: "2", brand: "Full Stack Development", name: "Task Management Application", price: "2024", rating: 5,
reviewCount: "A+", imageSrc: "http://img.b2bpic.net/free-photo/man-programming-office-using-artificial-intelligence-tech_482257-123917.jpg?_wi=1", imageAlt: "Task management app development"
reviewCount: "Node.js backend + MongoDB, real-time sync reduced latency by 60%", imageSrc: "http://img.b2bpic.net/free-photo/man-programming-office-using-artificial-intelligence-tech_482257-123917.jpg?_wi=1", imageAlt: "Task management app development"
},
{
id: "3", brand: "UI/UX Design", name: "Mobile App Concept", price: "2023", rating: 5,
reviewCount: "A", imageSrc: "http://img.b2bpic.net/free-psd/creative-template-design_23-2150217599.jpg?_wi=1", imageAlt: "Mobile app design concept"
reviewCount: "Figma design system with component library, 25% faster handoff", imageSrc: "http://img.b2bpic.net/free-psd/creative-template-design_23-2150217599.jpg?_wi=1", imageAlt: "Mobile app design concept"
}
]}
gridVariant="three-columns-all-equal-width"
@@ -189,4 +189,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}