diff --git a/src/app/live-queue/page.tsx b/src/app/live-queue/page.tsx
new file mode 100644
index 0000000..0a5a61b
--- /dev/null
+++ b/src/app/live-queue/page.tsx
@@ -0,0 +1,54 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+
+export default function LiveQueuePage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Live Queue", id: "/live-queue" },
+ { name: "Services", id: "#services" },
+ { name: "Gallery", id: "#gallery" },
+ { name: "Reviews", id: "#social-proof" },
+ { name: "Contact", id: "#contact" },
+ { name: "Book Queue", id: "/book-queue" },
+ { name: "Why Choose Us", id: "#why-choose-us" },
+ { name: "Process", id: "#process" },
+ { name: "About", id: "#about" },
+ { name: "FAQ", id: "#faq" }
+ ];
+
+ return (
+
+
+
+
+
+
+
Live Queue Status
+
Check the current wait times and queue status here.
+
Content for Live Queue will be added soon.
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index bc24bcf..fe999f6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -13,6 +13,7 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { CheckCircle, DollarSign, Star, Users } from "lucide-react";
+import ButtonBounceEffect from '@/components/button/ButtonBounceEffect/ButtonBounceEffect';
export default function LandingPage() {
return (
@@ -180,6 +181,8 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Before and After Gallery"
+ imageClassName="w-full h-full object-cover aspect-[4/3]"
+ uniformGridCustomHeightClasses="min-h-[22rem] md:min-h-[28rem] lg:min-h-[35rem]"
/>
@@ -287,6 +290,15 @@ export default function LandingPage() {
ariaLabel="Site footer"
/>
+
+
+
+
);
}
diff --git a/src/app/styles/base.css b/src/app/styles/base.css
index efe6053..c719d19 100644
--- a/src/app/styles/base.css
+++ b/src/app/styles/base.css
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
- font-family: var(--font-libre-baskerville), serif;
+ font-family: var(--font-dm-sans), sans-serif;
}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index be3aed7..3a5c203 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
- --background: #F8F8F8;
- --card: #F8F8F8;
- --foreground: #1B1B1B;
- --primary-cta: #D4AF37;
- --primary-cta-text: #0F0F0F;
- --secondary-cta: #1B1B1B;
- --secondary-cta-text: #F8F8F8;
- --accent: #1B1B1B;
- --background-accent: #0F0F0F;
+ --background: #0a0a0a;
+ --card: #1a1a1a;
+ --foreground: #f5f5f5;
+ --primary-cta: #ffdf7d;
+ --primary-cta-text: #0a0a0a;
+ --secondary-cta: #1a1a1a;
+ --secondary-cta-text: #ffffff;
+ --accent: #b8860b;
+ --background-accent: #8b6914;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);