Merge version_5 into main #5

Merged
bender merged 2 commits from version_5 into main 2026-03-07 07:10:42 +00:00
2 changed files with 8 additions and 5 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."};
@@ -23,7 +26,7 @@ export default function RootLayout({
}}
/>
</head>
<body className={inter.className}>{children}
<body className={poppins.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

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