Merge version_3 into main #5
@@ -1,8 +1,14 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geist_mono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Baker Fırın & Kafe", description: "Fresh Bakery & Premium Coffee in Antalya"};
|
||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<body className={`${geist.variable} ${geist_mono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -9,7 +9,7 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Coffee, Sparkles, UtensilsCrossed, MapPin } from 'lucide-react';
|
||||
import { Coffee, Sparkles, UtensilsCrossed, MapPin, Croissant, Wind } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -55,6 +55,16 @@ export default function LandingPage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
className="py-24 px-6"
|
||||
marqueeItems={[
|
||||
{ type: "text-icon", text: "İzmir Bombası", icon: Sparkles },
|
||||
{ type: "text-icon", text: "Fresh Croissants", icon: Croissant },
|
||||
{ type: "text-icon", text: "Turkish Coffee", icon: Coffee },
|
||||
{ type: "text-icon", text: "İzmir Bombası", icon: Sparkles },
|
||||
{ type: "text-icon", text: "Fresh Croissants", icon: Croissant },
|
||||
{ type: "text-icon", text: "Turkish Coffee", icon: Coffee }
|
||||
]}
|
||||
marqueeSpeed={30}
|
||||
showMarqueeCard={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -188,8 +198,8 @@ export default function LandingPage() {
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Our Customers Say"
|
||||
description="100+ Five-Star Reviews"
|
||||
tag="Customer Favorites"
|
||||
description="Join hundreds of satisfied customers who enjoy our premium pastries, fresh coffee, and warm hospitality"
|
||||
tag="Reviews"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -201,13 +211,7 @@ export default function LandingPage() {
|
||||
tag="Visit Us"
|
||||
tagIcon={MapPin}
|
||||
title="Find Us in Antalya"
|
||||
description="Ermenek, Rauf Denktaş Cd No:70, 00700 Muratpaşa / Antalya, Turkey
|
||||
|
||||
Phone: 0541 348 80 13
|
||||
Open 24 Hours
|
||||
|
||||
Wheelchair Accessible Entrance
|
||||
Free Street Parking Available"
|
||||
description="Ermenek, Rauf Denktaş Cd No:70, 00700 Muratpaşa / Antalya, Turkey\n\nPhone: 0541 348 80 13\nOpen 24 Hours\n\nWheelchair Accessible Entrance\nFree Street Parking Available"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
inputPlaceholder="Get directions"
|
||||
|
||||
Reference in New Issue
Block a user