inner navbar belong about page

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-03-02 09:05:16 +05:00
parent 61013d119f
commit 7d4e45d524
8 changed files with 149 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
import NormativBazaPage from "@/components/pages/about/aboutDetail/baza";
export default function Baza() {
return (
<div>
<NormativBazaPage />
</div>
);
}

View File

@@ -0,0 +1,15 @@
import { AboutBanner } from "@/components/pages/about";
import React from "react";
export default function AboutLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div>
<AboutBanner />
{children}
</div>
);
}

View File

@@ -1,10 +1,9 @@
import { AboutBanner, Story, WhyChooseUs } from "@/components/pages/about";
import { Story, WhyChooseUs } from "@/components/pages/about";
import { Statistics } from "@/components/pages/home";
export default function Page() {
return (
<div className="mb-0">
<AboutBanner />
<Story />
<Statistics/>
<WhyChooseUs/>