9 Commits

Author SHA1 Message Date
6294609ca2 Merge version_3 into main
Merge version_3 into main
2026-03-04 19:05:00 +00:00
f4308fb960 Update src/app/page.tsx 2026-03-04 19:04:56 +00:00
72c64a11c4 Update src/app/layout.tsx 2026-03-04 19:04:56 +00:00
3558697236 Merge version_2 into main
Merge version_2 into main
2026-03-04 19:00:02 +00:00
43aec36ffe Update src/app/page.tsx 2026-03-04 18:59:58 +00:00
e6dc93d154 Update src/app/layout.tsx 2026-03-04 18:59:57 +00:00
bb24f6acde Merge version_1 into main
Merge version_1 into main
2026-03-04 18:57:28 +00:00
26c0c3a671 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:56:43 +00:00
41461510cd Merge version_1 into main
Merge version_1 into main
2026-03-04 18:55:26 +00:00
2 changed files with 10 additions and 35 deletions

View File

@@ -1,45 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "3D Animated Portfolio | Creative Designer & Animator", description: "Immersive 3D animated portfolio showcasing design, animation, and creative technology expertise. Cinematic motion design, brand experiences, and production excellence.", keywords: "3D animation, motion graphics, creative design, brand design, portfolio, VFX, creative direction", openGraph: {
title: "3D Animated Portfolio | Creative Designer & Animator", description: "Experience immersive 3D animations and cinematic creative work", siteName: "Creative Portfolio", type: "website"},
twitter: {
card: "summary_large_image", title: "3D Animated Portfolio | Creative Designer & Animator", description: "Immersive 3D and motion design experiences"},
};
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={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -54,6 +54,7 @@ export default function LandingPage() {
buttons={[
{ text: "Explore My Work", href: "#portfolio" },
{ text: "Get in Touch", href: "#contact" },
{ text: "View Services", href: "#services" },
]}
/>
</div>
@@ -197,7 +198,7 @@ export default function LandingPage() {
ctaTitle="Let's Create Something Extraordinary"
ctaDescription="Ready to elevate your brand with immersive 3D experiences and cinematic motion design? Start a conversation about your next creative project."
ctaButton={{
text: "Schedule a Consultation", href: "mailto:hello@portfolio.com"
text: "Start Your Project", href: "mailto:hello@portfolio.com"
}}
ctaIcon={MessageCircle}
faqs={[
@@ -232,4 +233,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}