Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a13e7f4518 | |||
| ce177a42e6 | |||
| 97410271ce | |||
| 4a0c8291bb | |||
| 9079cb038e | |||
| 8351d3400f |
@@ -1,18 +1,19 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
|
import { Poppins } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const mulish = Mulish({
|
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
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 = {
|
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 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: [
|
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>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
className={`${inter.variable} ${poppins.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -33,16 +33,16 @@ import {
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="bounce-effect"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="medium"
|
||||||
sizing="medium"
|
sizing="mediumLarge"
|
||||||
background="none"
|
background="circleGradient"
|
||||||
cardStyle="gradient-radial"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
@@ -51,7 +51,6 @@ export default function LandingPage() {
|
|||||||
{ name: "Process", id: "process" },
|
{ name: "Process", id: "process" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "pricing" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
{ name: "About", id: "about" },
|
|
||||||
]}
|
]}
|
||||||
brandName="Luc"
|
brandName="Luc"
|
||||||
bottomLeftText="Premium Agency"
|
bottomLeftText="Premium Agency"
|
||||||
@@ -99,7 +98,7 @@ export default function LandingPage() {
|
|||||||
{ icon: Zap, title: "AI Automation", status: "Optimized" },
|
{ icon: Zap, title: "AI Automation", status: "Optimized" },
|
||||||
{ icon: Rocket, title: "Deployment", status: "Ready" },
|
{ 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: 65 },
|
||||||
{ value: 78 },
|
{ value: 78 },
|
||||||
{ value: 82 },
|
{ value: 82 },
|
||||||
@@ -125,7 +124,7 @@ export default function LandingPage() {
|
|||||||
title: "Web Design", description: "Beautiful, responsive interfaces crafted for conversion and user delight.", phoneOne: {
|
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"},
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5LrCJiOllqjUPSbg9UAzL1o6/minimalist-icon-representing-web-design--1772733365561-ee242d1d.png"},
|
||||||
phoneTwo: {
|
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,
|
id: 2,
|
||||||
|
|||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-mulish), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f5f5;
|
--background: #EAF4FF;
|
||||||
--card: #ffffff;
|
--card: #CFE6FF;
|
||||||
--foreground: #1c1c1c;
|
--foreground: #1E5FAF;
|
||||||
--primary-cta: #1c1c1c;
|
--primary-cta: #7FCBFF;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #f5f5f5;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #3FA9F5;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #1c1c1c;
|
||||||
--accent: #6139e6;
|
--accent: #7FCBFF;
|
||||||
--background-accent: #b3a8e8;
|
--background-accent: #3FA9F5;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user