first homepage push

This commit is contained in:
Jae Young Ahn 2025-04-17 10:31:02 -07:00
parent 1d17580817
commit a42fd4c8f9
11 changed files with 319 additions and 6 deletions

View file

@ -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>
);