6 Commits

Author SHA1 Message Date
376c05e7ea Update theme colors 2026-05-13 09:06:54 +00:00
cf4e90d8a3 Update theme fonts 2026-05-13 09:06:32 +00:00
a7a8abd7f7 Update theme fonts 2026-05-13 09:06:31 +00:00
49170171b6 Update src/app/page.tsx 2026-05-13 09:00:09 +00:00
e3c8eb1eeb Merge version_3 into main
Merge version_3 into main
2026-05-13 08:53:53 +00:00
b6cf1f1651 Merge version_3 into main
Merge version_3 into main
2026-05-13 08:53:16 +00:00
4 changed files with 22 additions and 14 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -20,8 +21,9 @@ export const metadata: Metadata = {
},
};
const nunito = Nunito({
variable: "--font-nunito",
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
@@ -33,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -11,7 +11,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Clock, Leaf, Truck, Utensils } from "lucide-react";
import { Clock, Leaf, MessageCircle, Truck, Utensils } from "lucide-react";
export default function LandingPage() {
return (
@@ -39,6 +39,8 @@ export default function LandingPage() {
name: "About", id: "about"},
{
name: "Contact", id: "contact"},
{
name: "WhatsApp", id: "whatsapp"},
]}
brandName="Bolani"
/>
@@ -95,6 +97,8 @@ export default function LandingPage() {
{
type: "text", text: "Best in Kabul"},
]}
buttons={[{
text: "Chat on WhatsApp", href: "https://wa.me/93700000000"}]}
/>
</div>
@@ -229,6 +233,8 @@ export default function LandingPage() {
label: "About", href: "#about"},
{
label: "Contact", href: "#contact"},
{
label: "WhatsApp", href: "https://wa.me/93700000000"},
],
},
{

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-nunito), sans-serif;
font-family: var(--font-figtree), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-nunito), sans-serif;
font-family: var(--font-figtree), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f6f0e9;
--card: #efe7dd;
--foreground: #2b180a;
--primary-cta: #c85a1a;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #efe7dd;
--secondary-cta-text: #2b180a;
--accent: #b8860b;
--background-accent: #e1b875;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);