detail page added

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-09 11:39:58 +05:00
parent 01a89edfd5
commit e53d40bd61
7 changed files with 205 additions and 189 deletions

14
app/detail/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { ContactForm } from "@/components/ContactForm";
import DetailInfo from "@/components/detailPage/detailInfo";
import React from "react";
export default function Page() {
return (
<div>
<DetailInfo />
<section id="contact">
<ContactForm />
</section>
</div>
);
}