Skip to content

Commit 50fd098

Browse files
committed
fix : editor build error
2 parents 4112a37 + fa5977a commit 50fd098

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

public/_redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* /index.html 200

src/App.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
import Playground from "./playground";
1+
import Button from "./components/shared/Button";
22

33
function App() {
44
return (
55
<div className="text-white bg-black text-7xl flex flex-col gap-4 items-center justify-center h-screen">
6-
<Playground />
6+
ASME Website
7+
<Button>Click Me!</Button>
78
</div>
89
);
910
}

src/Playground.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import Home from "./pages/playground/landing-page/Home.jsx";
1+
import Navbar from "./components/playground/Navbar.jsx";
22
import { Outlet } from "react-router";
33

44
const Playground = () => {
55
return (
66
<>
7-
<Home />
7+
<Navbar />
88
<Outlet />
99
</>
1010
);

src/pages/playground/landing-page/Home.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import React from "react";
2-
import Navbar from "../../../components/playground/Navbar";
32
import HeroSection from "../../../components/playground/HeroSection";
43
import AboutSection from "../../../components/playground/AboutSection";
54
import MissionSection from "../../../components/playground/MissionSection";
65

76
const Home = () => {
87
return (
98
<div className="min-h-screen bg-background">
10-
<Navbar />
119
<main>
1210
<HeroSection />
1311
<AboutSection />

0 commit comments

Comments
 (0)