Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a49382823 | |||
| e751265987 | |||
| 1e4664eb32 | |||
| 07e2822e25 | |||
| 5b5ff3aa54 | |||
| 8bbadbb514 | |||
| 9117438168 | |||
| 80b8a11d1d | |||
| f1e7fd74f6 |
@@ -1,11 +1,11 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
@@ -39,7 +39,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} antialiased`}
|
||||
className={`${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1414,4 +1414,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Dribbble, Instagram, Linkedin, Mail, Palette } from "lucide-react";
|
||||
import { Dribbble, Instagram, Linkedin, Mail, Palette, TrendingUp } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -41,15 +41,20 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
<HeroSplitKpi
|
||||
title="Visual Design That Moves People"
|
||||
description="Crafting bold, meaningful designs that elevate brands and create lasting impressions"
|
||||
tag="Creative Studio"
|
||||
background={{ variant: "plain" }}
|
||||
kpis={[
|
||||
{ value: "8+", label: "Years Experience" },
|
||||
{ value: "150+", label: "Projects Completed" },
|
||||
{ value: "100%", label: "Client Satisfaction" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/workplace-with-laptop_23-2147651756.jpg"
|
||||
imageAlt="Creative workspace with design tools"
|
||||
textPosition="bottom-left"
|
||||
showBlur={true}
|
||||
showDimOverlay={true}
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "View Portfolio", href: "#portfolio" },
|
||||
{ text: "Get in Touch", href: "#contact" }
|
||||
@@ -183,4 +188,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #e3deea;;
|
||||
/* --background: #f5f5f5;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1f2027;;
|
||||
--primary-cta: #627dc6;;
|
||||
--foreground: #1c1c1c;;
|
||||
--primary-cta: #15479c;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #627dc6;;
|
||||
--background-accent: #627dc6;; */
|
||||
--accent: #a8cce8;;
|
||||
--background-accent: #7ba3cf;; */
|
||||
|
||||
--background: #e3deea;;
|
||||
--background: #f5f5f5;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1f2027;;
|
||||
--primary-cta: #627dc6;;
|
||||
--foreground: #1c1c1c;;
|
||||
--primary-cta: #15479c;;
|
||||
--primary-cta-text: #e3deea;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta-text: #1f2027;;
|
||||
--accent: #627dc6;;
|
||||
--background-accent: #627dc6;;
|
||||
--accent: #a8cce8;;
|
||||
--background-accent: #7ba3cf;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user