mirror of
https://git.meshkee.com/novintrades/website.git
synced 2026-08-11 20:50:58 +04:30
18 lines
416 B
TypeScript
18 lines
416 B
TypeScript
import Slider from "../components/Slider";
|
|
import Categories from "../components/Categories";
|
|
import LatestBlog from "../components/LatestBlog";
|
|
import AboutUs from "../components/AboutUs";
|
|
import LatestBrands from "../components/LatestBrands";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<Slider />
|
|
<Categories />
|
|
<LatestBlog />
|
|
<AboutUs />
|
|
<LatestBrands />
|
|
</>
|
|
);
|
|
}
|