Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 585f6bbd96 | |||
| 5078d4edb8 | |||
| 0e63eea57d | |||
| 4955619679 | |||
| 13f9335169 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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: "Completed in 3 months", 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: "8.2k GitHub stars", 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: "1.5k user engagement", 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"
|
||||
|
||||
Reference in New Issue
Block a user