11 Commits

Author SHA1 Message Date
18d3d0af91 Update theme fonts 2026-06-05 10:16:37 +00:00
2cca9eba9a Update theme fonts 2026-06-05 10:16:37 +00:00
0c9062a66f Update theme colors 2026-06-05 10:15:47 +00:00
a254dcf875 Update theme colors 2026-06-05 10:15:36 +00:00
84dd3343a6 Update theme colors 2026-06-05 10:14:59 +00:00
2eaf716e2b Update theme colors 2026-06-05 10:14:29 +00:00
7f0ab43c33 Update src/app/page.tsx 2026-06-05 09:28:22 +00:00
85a484a6ad Merge version_2 into main
Merge version_2 into main
2026-06-05 09:25:17 +00:00
f54541882a Update src/app/page.tsx 2026-06-05 09:25:11 +00:00
0b6fef68ba Merge version_1 into main
Merge version_1 into main
2026-06-05 09:08:13 +00:00
e823f1eff6 Merge version_1 into main
Merge version_1 into main
2026-06-05 09:07:29 +00:00
4 changed files with 18 additions and 7 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 { Montserrat } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -41,9 +42,11 @@ export const metadata: Metadata = {
},
};
const montserrat = Montserrat({
variable: "--font-montserrat",
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -54,7 +57,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -85,7 +85,7 @@ export default function LandingPage() {
description="Happy Cafe & Restaurant is dedicated to creating a comfortable and inviting atmosphere for all our guests. From our carefully selected ingredients to our warm, welcoming staff, we ensure a delightful experience."
subdescription="Our passion for culinary excellence and genuine hospitality makes us a beloved spot in Addis Ababa's vibrant dining scene."
icon={Coffee}
imageSrc="http://img.b2bpic.net/free-photo/tufted-brown-leather-ottoman_417767-424.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ei7rrKldWOomVozZQ98L9JXFAY/uploaded-1780651484858-b23w3yb3.png"
mediaAnimation="slide-up"
/>
</div>
@@ -137,6 +137,14 @@ export default function LandingPage() {
title="Delightful Dishes for Every Palate"
description="Explore our diverse menu featuring gourmet pizzas, classic fast-food favorites, and refreshing beverages, all crafted with passion."
tag="Our Menu"
buttons={[
{
text: "Order Online", href: "#"
},
{
text: "Dine With Us", href: "#location"
}
]}
/>
</div>

View File

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

View File

@@ -12,7 +12,7 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--foreground: #101200;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;