Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 400e757896 | |||
| a47f302c4d |
@@ -50,27 +50,27 @@ export default function LandingPage() {
|
|||||||
<div id="metriccardone" data-section="metriccardone">
|
<div id="metriccardone" data-section="metriccardone">
|
||||||
<MetricCardOne
|
<MetricCardOne
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
value: "15+",
|
value: "15+",
|
||||||
title: "Years Experience",
|
title: "Years Experience",
|
||||||
description: "Serving authentic Asian cuisine",
|
description: "Serving authentic Asian cuisine",
|
||||||
icon: ChefHat ?? null
|
icon: typeof ChefHat !== 'undefined' ? ChefHat : null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
value: "50K+",
|
value: "50K+",
|
||||||
title: "Happy Customers",
|
title: "Happy Customers",
|
||||||
description: "Satisfied diners every month",
|
description: "Satisfied diners every month",
|
||||||
icon: Users ?? null
|
icon: typeof Users !== 'undefined' ? Users : null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
value: "100%",
|
value: "100%",
|
||||||
title: "Fresh Ingredients",
|
title: "Fresh Ingredients",
|
||||||
description: "Sourced daily from local markets",
|
description: "Sourced daily from local markets",
|
||||||
icon: Leaf ?? null
|
icon: typeof Leaf !== 'undefined' ? Leaf : null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
value: "24/7",
|
value: "24/7",
|
||||||
|
|||||||
@@ -3,22 +3,22 @@
|
|||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #f5f5f5;;
|
||||||
--card: #ffffff;;
|
--card: #2d2d2d;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #ffffff;;
|
||||||
--primary-cta: #1c1c1c;;
|
--primary-cta: #dc2626;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1a1a1a;;
|
||||||
--accent: #159c49;;
|
--accent: #ef4444;;
|
||||||
--background-accent: #a8e8ba;; */
|
--background-accent: #7f1d1d;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #1a1a1a;;
|
||||||
--card: #ffffff;;
|
--card: #2d2d2d;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #ffffff;;
|
||||||
--primary-cta: #1c1c1c;;
|
--primary-cta: #dc2626;;
|
||||||
--primary-cta-text: #f5f5f5;;
|
--primary-cta-text: #f5f5f5;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1a1a1a;;
|
||||||
--secondary-cta-text: #1c1c1c;;
|
--secondary-cta-text: #1c1c1c;;
|
||||||
--accent: #159c49;;
|
--accent: #ef4444;;
|
||||||
--background-accent: #a8e8ba;;
|
--background-accent: #7f1d1d;;
|
||||||
|
|
||||||
/* 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