Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a13e7f4518 | |||
| ce177a42e6 | |||
| 97410271ce | |||
| 4a0c8291bb | |||
| 9079cb038e | |||
| 8351d3400f |
@@ -1,18 +1,19 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luc | Design. Automate. Launch.", description: "Premium design, AI automation, and SaaS expertise combined. Luc transforms your vision into production-ready products.", keywords: "design agency, SaaS development, AI automation, digital transformation, creative solutions", openGraph: {
|
||||
title: "Luc | Design. Automate. Launch.", description: "Premium design, AI automation, and SaaS expertise. Transform your vision into reality.", type: "website", siteName: "Luc", images: [
|
||||
@@ -38,7 +39,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
className={`${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
@@ -33,16 +33,16 @@ import {
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="small"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="gradient"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
@@ -51,7 +51,6 @@ export default function LandingPage() {
|
||||
{ name: "Process", id: "process" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About", id: "about" },
|
||||
]}
|
||||
brandName="Luc"
|
||||
bottomLeftText="Premium Agency"
|
||||
@@ -99,7 +98,7 @@ export default function LandingPage() {
|
||||
{ icon: Zap, title: "AI Automation", status: "Optimized" },
|
||||
{ icon: Rocket, title: "Deployment", status: "Ready" },
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5LrCJiOllqjUPSbg9UAzL1o6/elegant-saas-dashboard-mockup-with-clean-1772733365661-d51fd6e7.png?_wi=1", searchPlaceholder: "Search projects...", chartTitle: "Project Progress", chartData: [
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5LrCJiOllqjUPSbg9UAzL1o6/elegant-saas-dashboard-mockup-with-clean-1772733365661-d51fd6e7.png?&_wi=1", searchPlaceholder: "Search projects...", chartTitle: "Project Progress", chartData: [
|
||||
{ value: 65 },
|
||||
{ value: 78 },
|
||||
{ value: 82 },
|
||||
@@ -125,7 +124,7 @@ export default function LandingPage() {
|
||||
title: "Web Design", description: "Beautiful, responsive interfaces crafted for conversion and user delight.", phoneOne: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5LrCJiOllqjUPSbg9UAzL1o6/minimalist-icon-representing-web-design--1772733365561-ee242d1d.png"},
|
||||
phoneTwo: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5LrCJiOllqjUPSbg9UAzL1o6/elegant-saas-dashboard-mockup-with-clean-1772733365661-d51fd6e7.png?_wi=2"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5LrCJiOllqjUPSbg9UAzL1o6/elegant-saas-dashboard-mockup-with-clean-1772733365661-d51fd6e7.png?&_wi=2"},
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #1c1c1c;
|
||||
--background: #EAF4FF;
|
||||
--card: #CFE6FF;
|
||||
--foreground: #1E5FAF;
|
||||
--primary-cta: #7FCBFF;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta: #3FA9F5;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #6139e6;
|
||||
--background-accent: #b3a8e8;
|
||||
--accent: #7FCBFF;
|
||||
--background-accent: #3FA9F5;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user