Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8f237dd90d | |||
| a32117d450 | |||
| 251f163cb8 | |||
| 172f2a349b | |||
| 7c6bb00df6 | |||
| 81cff5f0e5 | |||
| c879d83904 | |||
| 3ecc1e8bec | |||
| da06e31355 | |||
| a2d5b045b0 |
@@ -1,51 +1,32 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Poppins } 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 poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Premium Portfolio - Design & Development Excellence", description: "Explore innovative digital solutions, cutting-edge design systems, and immersive 3D experiences. Premium portfolio of Dibendu Roy featuring 15+ years of professional expertise.", keywords: "portfolio, design, development, 3D, UI/UX, full-stack, innovation", openGraph: {
|
||||
title: "Premium Portfolio - Design & Development Excellence", description: "Innovative digital solutions and premium design systems showcasing 15+ years of excellence.", siteName: "Dibendu Roy Portfolio", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbfLIYU0GCFTZapYpPT04HMzWT/a-striking-high-contrast-black-and-white-1772866339892-050a4668.png", alt: "Premium Portfolio Hero"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Premium Portfolio - Design & Development Excellence", description: "Innovative digital solutions and premium design systems.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbfLIYU0GCFTZapYpPT04HMzWT/a-striking-high-contrast-black-and-white-1772866339892-050a4668.png"],
|
||||
},
|
||||
};
|
||||
title: "Dibendu Roy - Premium Digital Design & Development", description: "Innovative digital solutions, cutting-edge design systems, and immersive 3D experiences that transform ideas into reality."};
|
||||
|
||||
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">
|
||||
<head>
|
||||
<script
|
||||
type="application/ld+json"
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: JSON.stringify({
|
||||
"@context": "https://schema.org", "@type": "Person", name: "Dibendu Roy", description: "Premium digital designer and developer"}),
|
||||
}}
|
||||
/>
|
||||
</head>
|
||||
<body className={poppins.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1394,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -45,7 +45,7 @@ export default function LandingPage() {
|
||||
description="Turning logic into elegance. Premium portfolio showcasing innovative digital solutions, cutting-edge design systems, and immersive 3D experiences that transform ideas into reality."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Explore My Work", href: "#works" },
|
||||
{ text: "See Premium Projects", href: "#works" },
|
||||
{ text: "Download Resume", href: "#" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -159,7 +159,7 @@ export default function LandingPage() {
|
||||
ctaTitle="Ready to Build Something Amazing?"
|
||||
ctaDescription="Let's collaborate on your next premium project. I'm always open to discussing new ideas and opportunities."
|
||||
ctaButton={{
|
||||
text: "Schedule a Call", href: "mailto:contact@dibenduroy.com"}}
|
||||
text: "Book a Free Consultation", href: "mailto:contact@dibenduroy.com"}}
|
||||
ctaIcon={Calendar}
|
||||
faqs={[
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user