contact page

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-23 09:54:44 +05:00
parent ff21ccb2af
commit dca26dbca1
7 changed files with 452 additions and 2 deletions

6
app/contact/page.tsx Normal file
View File

@@ -0,0 +1,6 @@
import { Contact } from "@/components/pages/contact";
import React from "react";
export default function Page() {
return <Contact />;
}

View File

@@ -1,6 +1,7 @@
import {
AboutUs,
Banner,
Blog,
Line,
OurService,
Statistics,
@@ -10,14 +11,15 @@ import {
export default function Home() {
return (
<main className="bg-slate-950 mb-90">
<main className="bg-slate-950">
<Banner />
<Statistics />
<AboutUs />
<Video />
<OurService />
<Testimonial />
<Line/>
<Line />
<Blog />
</main>
);
}