Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4a6fce066b | |||
| b7c523894c | |||
| 63fb7b96f2 | |||
| af161eb859 | |||
| 9460840d2f | |||
| 9cdcbf8c53 | |||
| 284aa11df3 | |||
| cb056ccfa4 | |||
| 90a6358aef | |||
| fe81af58b9 | |||
| f1d0c545fa | |||
| 149fbaa49e | |||
| cebf789349 | |||
| 65fea05fa4 | |||
| cfd49b3eb8 | |||
| 0a2cf31d91 | |||
| 208c49e312 | |||
| 63c44ceaa1 | |||
| 9869bf2af2 | |||
| b5084573fa |
@@ -4,8 +4,13 @@ import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Archivo } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -14,8 +19,20 @@ export const metadata: Metadata = {
|
||||
description: 'PixelForge Digital crafts stunning, high-performance websites that captivate audiences and drive results. Elevate your online presence with our expert web design and development services.',
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -26,8 +43,8 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
|
||||
@@ -35,12 +35,12 @@ export default function WebAgencyThemePage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={navItems}
|
||||
brandName="Growthlab.origin"
|
||||
button={{ text: "Termin buchen", href: "#contact" }}
|
||||
button={{ text: "Kostenloses Erstgespräch", href: "#contact" }}
|
||||
/>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Mehr Zeit fürs Wesentliches – dank KI & smarten Webseiten"
|
||||
title="Mehr Zeit fürs Wesentliche — angetrieben von KI & smarten Webseiten"
|
||||
description="Wir automatisieren deine Terminbuchung und bauen Webseiten, die Kunden gewinnen."
|
||||
enableKpiAnimation={false}
|
||||
kpis={[
|
||||
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000f06e6;
|
||||
--primary-cta: #0a7039;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000f06e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--background: #fafffb;
|
||||
--card: #ffffff;
|
||||
--foreground: #001a0a;
|
||||
--primary-cta: #0a705f;
|
||||
--primary-cta-text: #fafffb;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #001a0a;
|
||||
--accent: #a8d9be;
|
||||
--background-accent: #6bbfb8;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user