7 Commits

Author SHA1 Message Date
8f237dd90d Update src/app/styles/base.css 2026-03-07 07:10:37 +00:00
a32117d450 Update src/app/layout.tsx 2026-03-07 07:10:36 +00:00
251f163cb8 Merge version_4 into main
Merge version_4 into main
2026-03-07 07:08:10 +00:00
172f2a349b Update src/app/layout.tsx 2026-03-07 07:08:06 +00:00
7c6bb00df6 Merge version_3 into main
Merge version_3 into main
2026-03-07 07:00:26 +00:00
81cff5f0e5 Update src/app/page.tsx 2026-03-07 07:00:22 +00:00
c879d83904 Merge version_2 into main
Merge version_2 into main
2026-03-07 06:56:58 +00:00
3 changed files with 18 additions and 6 deletions

View File

@@ -1,8 +1,11 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
const inter = Inter({ 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: "Dibendu Roy - Premium Digital Design & Development", description: "Innovative digital solutions, cutting-edge design systems, and immersive 3D experiences that transform ideas into reality."};
@@ -14,7 +17,16 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<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: `

View File

@@ -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"

View File

@@ -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;
}