generated from fahricansecer/boilerplate-fe
main
Some checks failed
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Has been cancelled
Some checks failed
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Has been cancelled
This commit is contained in:
33
src/App.tsx
Normal file
33
src/App.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
import Navbar from './components/Navbar';
|
||||
import Hero from './components/Hero';
|
||||
import Works from './components/Works';
|
||||
import Services from './components/Services';
|
||||
import Clients from './components/Clients';
|
||||
import Process from './components/Process';
|
||||
import About from './components/About';
|
||||
import Contact from './components/Contact';
|
||||
import Footer from './components/Footer';
|
||||
import DynamicBackground from './components/DynamicBackground';
|
||||
import Admin from './components/Admin';
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<div className="min-h-screen relative bg-[#050505]">
|
||||
<DynamicBackground />
|
||||
<div className="relative z-10">
|
||||
<Navbar />
|
||||
<main>
|
||||
<Hero />
|
||||
<Works />
|
||||
<Services />
|
||||
<Clients />
|
||||
<Process />
|
||||
<About />
|
||||
<Contact />
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
<Admin />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user