Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8f237dd90d | |||
| a32117d450 | |||
| 251f163cb8 | |||
| 172f2a349b | |||
| 7c6bb00df6 | |||
| 81cff5f0e5 | |||
| c879d83904 |
@@ -1,8 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import "./globals.css";
|
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 = {
|
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."};
|
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 (
|
return (
|
||||||
<html lang="en">
|
<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
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__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."
|
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" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore My Work", href: "#works" },
|
{ text: "See Premium Projects", href: "#works" },
|
||||||
{ text: "Download Resume", href: "#" },
|
{ text: "Download Resume", href: "#" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-manrope), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-manrope), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user