Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4a36668bb | |||
| 3207eb0be9 | |||
| 1bbfb437ee | |||
| b8908963e1 | |||
| 294c62f18c | |||
| f010828ced |
@@ -1,17 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Josefin_Sans } from "next/font/google";
|
import { IBM_Plex_Sans } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Roboto_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const josefinSans = Josefin_Sans({
|
const ibmPlexSans = IBM_Plex_Sans({
|
||||||
variable: "--font-josefin-sans", subsets: ["latin"],
|
variable: "--font-ibm-plex-sans", subsets: ["latin"],
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700"],
|
weight: ["100", "200", "300", "400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const robotoMono = Roboto_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-roboto-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -37,7 +37,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${josefinSans.variable} ${inter.variable} antialiased`}
|
className={`${ibmPlexSans.variable} ${robotoMono.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
@@ -1412,4 +1412,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -101,6 +101,8 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
|
cardClassName="group perspective cursor-pointer h-full"
|
||||||
|
containerClassName="[&_.card-inner]:group-hover:transition-transform [&_.card-inner]:group-hover:duration-500 [&_.card-inner]:group-hover:[transform-style:preserve-3d] [&_.card-inner]:group-hover:[transform:rotateY(180deg)]"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -233,4 +235,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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-inter), sans-serif;
|
font-family: var(--font-ibm-plex-sans), 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-josefin-sans), sans-serif;
|
font-family: var(--font-ibm-plex-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user