Merge version_3 into main #5
@@ -1,18 +1,15 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/base.css";
|
||||
import "./globals.css";
|
||||
|
||||
const geist = Geist({
|
||||
variable: "--font-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-mono", subsets: ["latin"],
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Precision Lead Systems - Web Design & Performance Marketing", description: "Web design and performance marketing for growing businesses. Custom websites, organic growth, and paid advertising with commission-based pricing."};
|
||||
title: "Precision Lead Systems - Web Design & Performance Marketing", description: "Web design and performance marketing for growing businesses. Custom websites, organic growth, and paid advertising with commission-based pricing."
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -21,7 +18,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
<body className={`${inter.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
|
||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
||||
<HeroSplit
|
||||
title="Designed to Be Seen. Built to Perform."
|
||||
description="Web Design & Performance Marketing for Growing Businesses. We craft stunning websites at $250 AUD and grow your business through organic marketing and paid advertising with commission-based performance. Let's book a call and show you how we're different."
|
||||
background={{ variant: "glowing-orb" }}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Web Design & Marketing Agency"
|
||||
tagAnimation="blur-reveal"
|
||||
buttons={[
|
||||
@@ -55,8 +55,8 @@ export default function LandingPage() {
|
||||
{ text: "See Our Work", href: "#why-us" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKcwj0XHqsibbvpukeOn0v4r/a-sleek-modern-web-design-dashboard-inte-1772796761150-8f8cc140.png"
|
||||
imageAlt="Modern web design dashboard showcasing our work"
|
||||
videoSrc="/videos/wave-background.mp4"
|
||||
videoAriaLabel="Animated wave background"
|
||||
imagePosition="right"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
@@ -284,4 +284,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffffe6;
|
||||
--primary-cta: #00ffff;
|
||||
--background: #000000;
|
||||
--card: #0a0a0a;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #000000;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta: #000000;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #ff00ff;
|
||||
--background-accent: #00ffff;
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user