4 Commits

Author SHA1 Message Date
2d9c7e200b Update src/app/page.tsx 2026-05-09 06:24:37 +00:00
7c16f8fd7e Switch to version 9: modified src/app/styles/base.css 2026-04-27 10:25:46 +00:00
b4e8a4b45e Switch to version 9: modified src/app/layout.tsx 2026-04-27 10:25:46 +00:00
673a4c7156 Merge version_10 into main
Merge version_10 into main
2026-04-27 09:54:39 +00:00
3 changed files with 6 additions and 7 deletions

View File

@@ -23,9 +23,8 @@ export const metadata: Metadata = {
const raleway = Raleway({
const archivo = Archivo({ variable: "--font-raleway", subsets: ["latin"],
variable: "--font-archivo", subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -36,7 +35,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${archivo.variable} antialiased`}> <body className={`${raleway.variable} antialiased`}>
{children} {children}
<script <script

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
]} ]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cvt4PPP0YApeAGvWYHGlzw6Rdm/uploaded-1777278731295-odlbgps7.png" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cvt4PPP0YApeAGvWYHGlzw6Rdm/uploaded-1777278731295-odlbgps7.png"
mediaAnimation="slide-up" mediaAnimation="slide-up"
className="[&_h1]:!text-red-600 [&_h2]:!text-green-700" className="[&_h1]:!text-red-600 [&_h2]:!text-green-700 bg-[url('https://images.unsplash.com/photo-1549216021-395801736b47?q=80&w=2670&auto=format&fit=crop')] bg-cover bg-center bg-blend-multiply bg-gray-500/30"
/> />
</div> </div>

View File

@@ -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-archivo), sans-serif; font-family: var(--font-raleway), 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-archivo), sans-serif; font-family: var(--font-raleway), sans-serif;
} }