Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 406adce4a8 | |||
| 3f7b8ee5c8 | |||
| 7d93f6c17e | |||
| 15d7d2d96c | |||
| 371e017439 |
@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
import { Lobster_Two } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -44,15 +45,11 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
|
||||||
variable: "--font-libre-baskerville",
|
const lobsterTwo = Lobster_Two({
|
||||||
subsets: ["latin"],
|
variable: "--font-lobster-two", subsets: ["latin"],
|
||||||
weight: ["400", "700"],
|
weight: ["400", "700"],
|
||||||
});
|
});
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -62,7 +59,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
<body className={`${lobsterTwo.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -100,6 +100,7 @@ export default function HomePage() {
|
|||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/tmp/monitor-with-graphs-and-analytics-for-so-1773145230881-88125799.png"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/tmp/monitor-with-graphs-and-analytics-for-so-1773145230881-88125799.png"
|
||||||
imageAlt="TechCore Enterprise Dashboard"
|
imageAlt="TechCore Enterprise Dashboard"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
|
imageClassName="hover:scale-110 transition-transform duration-300 ease-out"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/microsoft-company-logo-modern-and-recogn-1773144537677-e897c954.jpg", alt: "Microsoft" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/microsoft-company-logo-modern-and-recogn-1773144537677-e897c954.jpg", alt: "Microsoft" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/google-company-logo-iconic-colorful-tech-1773144532136-cc6c331d.png", alt: "Google" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/google-company-logo-iconic-colorful-tech-1773144532136-cc6c331d.png", alt: "Google" },
|
||||||
|
|||||||
@@ -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-lobster-two), 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-libre-baskerville), serif;
|
font-family: var(--font-lobster-two), serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user