45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import Head from 'next/head';
|
|
import CatalogSubscribe from "@/components/CatalogSubscribe";
|
|
import MobileMenuBottomSection from "@/components/MobileMenuBottomSection";
|
|
import NewsAndPromos from "@/components/index/NewsAndPromos";
|
|
import Footer from "@/components/Footer";
|
|
import IndexTopMenuNav from "@/components/index/IndexTopMenuNav";
|
|
import ProductOfDaySection from "@/components/index/ProductOfDaySection";
|
|
import CategoryNavSection from "@/components/index/CategoryNavSection";
|
|
import BrandSelectionSection from "@/components/index/BrandSelectionSection";
|
|
import BestPriceSection from "@/components/index/BestPriceSection";
|
|
import TopSalesSection from "@/components/index/TopSalesSection";
|
|
import PromoImagesSection from "@/components/index/PromoImagesSection";
|
|
import NewArrivalsSection from '@/components/index/NewArrivalsSection';
|
|
import SupportVinSection from '@/components/index/SupportVinSection';
|
|
|
|
export default function HomeNew () {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Home New</title>
|
|
<link href="https://fonts.googleapis.com" rel="preconnect" />
|
|
<link href="https://fonts.gstatic.com" rel="preconnect" crossOrigin="anonymous" />
|
|
<link href="images/favicon.png" rel="shortcut icon" type="image/x-icon" />
|
|
<link href="images/webclip.png" rel="apple-touch-icon" />
|
|
</Head>
|
|
<IndexTopMenuNav />
|
|
<ProductOfDaySection />
|
|
<CategoryNavSection />
|
|
<BrandSelectionSection />
|
|
<BestPriceSection />
|
|
<TopSalesSection />
|
|
<PromoImagesSection />
|
|
<NewArrivalsSection />
|
|
<SupportVinSection />
|
|
<NewsAndPromos />
|
|
<section className="section-3">
|
|
<CatalogSubscribe />
|
|
</section>
|
|
<Footer />
|
|
<MobileMenuBottomSection />
|
|
</>
|
|
);
|
|
}
|