first homepage push
This commit is contained in:
parent
1d17580817
commit
a42fd4c8f9
11 changed files with 319 additions and 6 deletions
|
|
@ -2,9 +2,16 @@ import { StrictMode } from "react";
|
|||
import { createRoot } from "react-dom/client";
|
||||
import AppRouter from "./routers/AppRouter";
|
||||
import "./scss/styles.scss";
|
||||
import Navbar from "./components/Navbar";
|
||||
import Hero from "./components/Hero";
|
||||
import Services from "./components/Services";
|
||||
|
||||
createRoot(document.getElementById("root")).render(
|
||||
<StrictMode>
|
||||
<Navbar />
|
||||
<Hero />
|
||||
<Services />
|
||||
<AppRouter />
|
||||
|
||||
</StrictMode>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue