Merge version_3 into main #2

Merged
bender merged 2 commits from version_3 into main 2026-03-06 18:02:19 +00:00
2 changed files with 14 additions and 37 deletions

View File

@@ -1,50 +1,28 @@
import type { Metadata } from "next";
import { Mulish } 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 mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Creative Portfolio | Design & Development", description: "Explore my portfolio of award-winning design and development projects. Let's create something amazing together.", keywords: "portfolio, design, development, web design, mobile app, branding", metadataBase: new URL("https://creative-portfolio.com"),
openGraph: {
title: "Creative Portfolio | Design & Development", description: "Explore award-winning design and development work", siteName: "Creative Portfolio", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-late-night_23-2150171119.jpg", alt: "Portfolio showcase"
}
]
},
twitter: {
card: "summary_large_image", title: "Creative Portfolio | Design & Development", description: "Award-winning design and development portfolio", images: ["http://img.b2bpic.net/free-photo/medium-shot-woman-working-late-night_23-2150171119.jpg"]
},
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={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -58,7 +58,7 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "View Portfolio", href: "portfolio" },
{ text: "Explore Gallery", href: "portfolio" },
{ text: "Book a Session", href: "contact" }
]}
videoSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-working-late-night_23-2150171119.jpg"
@@ -192,4 +192,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}