34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
export const metadata = {
|
|
title: "Dine 360 | Best Restaurant POS in Hamilton, GTA & Kitchener | Save 50%",
|
|
description:
|
|
"Dine 360 is the most affordable POS for 1-3 location restaurants in Southern Ontario. No hardware fees. No hidden costs.",
|
|
};
|
|
|
|
import Navbar from "@/components/Navbar";
|
|
import HeroSection from "@/components/HeroSection";
|
|
import VideoSection from "@/components/VideoSection";
|
|
import HighlightsSection from "@/components/HighlightsSection";
|
|
import Testimonials from "@/components/Testimonials";
|
|
import FeaturesSection from "@/components/FeaturesSection";
|
|
import FAQ from "@/components/FAQ";
|
|
import ContactSection from "@/components/ContactSection";
|
|
import Footer from "@/components/Footer";
|
|
import ComparisonSection from "@/components/ComparisonSection";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="relative min-h-screen font-sans bg-black text-white selection:bg-red-600 selection:text-white">
|
|
<Navbar />
|
|
<HeroSection />
|
|
<VideoSection />
|
|
<ComparisonSection />
|
|
<FeaturesSection />
|
|
<HighlightsSection />
|
|
<Testimonials />
|
|
<FAQ />
|
|
{/* <ContactSection /> */}
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|