Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-04 00:05:11 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "../styles/globals.css";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Interactive Cyberpunk Portfolio | Walk Through My Work", description: "Explore an immersive cyberpunk city to discover innovative projects. Meet NPCs, interact with portfolio content, and experience playable design.", keywords: "portfolio, interactive, cyberpunk, web developer, game developer, creative technologist, design, UI/UX, 3D graphics", metadataBase: new URL("https://example.com"),
alternates: {
canonical: "https://example.com"
},
openGraph: {
title: "Interactive Cyberpunk Portfolio", description: "Walk through my work—literally. Explore a playable cyberpunk city filled with projects and interactive experiences.", url: "https://example.com", siteName: "Cyberpunk Portfolio", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APazqu2zUGttIlIPKpVlutAVcM/a-stunning-futuristic-cyberpunk-city-sky-1772579589738-af5a3fa1.png", alt: "A stunning futuristic cyberpunk city skyline with neon purple, blue, and pink lights. Tall skyscrape"
}
]
},
twitter: {
card: "summary_large_image", title: "Interactive Cyberpunk Portfolio", description: "Explore a playable cyberpunk city to discover innovative projects and technical expertise.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APazqu2zUGttIlIPKpVlutAVcM/a-stunning-futuristic-cyberpunk-city-sky-1772579589738-af5a3fa1.png"]
},
robots: {
index: true,
follow: true
}
};
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={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -165,7 +165,7 @@ export default function LandingPage() {
useInvertedBackground={false}
buttons={[
{ text: "Get in Touch", href: "mailto:contact@example.com" },
{ text: "Explore More", href: "#projects" }
{ text: "View My Work", href: "#projects" }
]}
/>
</div>
@@ -179,4 +179,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}