diff --git a/src/app/page.tsx b/src/app/page.tsx
index 36e03b3..24c4414 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,7 +10,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TextAbout from '@/components/sections/about/TextAbout';
-import { Clock, Moon } from "lucide-react";
+import { Clock, Moon, Utensils, Greek, Pizza, Smile, Wine, Cake } from "lucide-react";
export default function LandingPage() {
return (
@@ -30,26 +30,11 @@ export default function LandingPage() {
@@ -57,43 +42,14 @@ export default function LandingPage() {
@@ -261,18 +122,8 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
metrics={[
- {
- id: "lunch",
- icon: Clock,
- title: "Lunch",
- value: "11:00–13:30",
- },
- {
- id: "kvall",
- icon: Moon,
- title: "Kväll",
- value: "16:00–22:00",
- },
+ { id: "lunch", icon: Clock, title: "Lunch", value: "11:00–13:30" },
+ { id: "kvall", icon: Moon, title: "Kväll", value: "16:00–22:00" }
]}
title="Öppettider"
description="Välkommen när som helst"
@@ -285,18 +136,8 @@ export default function LandingPage() {
title="Hitta till oss"
description="Näsbychaussèn 70, Kristianstad"
inputs={[
- {
- name: "name",
- type: "text",
- placeholder: "Ditt namn",
- required: true,
- },
- {
- name: "message",
- type: "text",
- placeholder: "Din fråga",
- required: true,
- },
+ { name: "name", type: "text", placeholder: "Ditt namn", required: true },
+ { name: "message", type: "text", placeholder: "Din fråga", required: true }
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=a3hyst"
/>
@@ -305,14 +146,8 @@ export default function LandingPage() {