6 Commits

Author SHA1 Message Date
771c1b1a1f Merge version_4 into main
Merge version_4 into main
2026-03-03 06:14:11 +00:00
7c405eecb6 Update src/app/page.tsx 2026-03-03 06:14:06 +00:00
28a03d8b54 Update src/app/layout.tsx 2026-03-03 06:14:06 +00:00
4da3aba2d6 Switch to version 2: modified src/app/page.tsx 2026-03-03 06:12:07 +00:00
ad11bf09fe Switch to version 2: modified src/app/layout.tsx 2026-03-03 06:12:06 +00:00
aae5db5899 Merge version_3 into main
Merge version_3 into main
2026-03-03 06:10:54 +00:00
2 changed files with 9 additions and 5 deletions

View File

@@ -4,12 +4,15 @@ import "./styles/variables.css";
import "./globals.css";
const geistSans = localFont({
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"
});
const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"
});
export const metadata: Metadata = {
title: "Mini Market Moras - Local Market in Kersey, CO", description: "Your friendly neighborhood market in Kersey, Colorado. Well-stocked with quality products and friendly service."};
title: "Mini Market Moras - Local Market in Kersey, CO", description: "Your friendly neighborhood market in Kersey, Colorado. Well-stocked with quality products and friendly service."
};
export default function RootLayout({
children,

View File

@@ -8,7 +8,7 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Star, Heart, CheckCircle, Phone } from 'lucide-react';
import { Star, Heart, CheckCircle, Phone, Clock } from 'lucide-react';
export default function LandingPage() {
return (
@@ -73,7 +73,8 @@ export default function LandingPage() {
testimonialRotationInterval={5000}
buttons={[
{ text: "📞 Call Now", href: "tel:+19705035033" },
{ text: "📍 Get Directions", href: "https://maps.google.com/?q=202+1st+St+Kersey+CO+80644" }
{ text: "📍 Get Directions", href: "https://maps.google.com/?q=202+1st+St+Kersey+CO+80644" },
{ text: "⏰ Hours & Location", href: "hours" }
]}
/>
</div>