Add src/App.tsx
This commit is contained in:
23
src/App.tsx
Normal file
23
src/App.tsx
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { ThemeProvider } from './components/ui/ThemeProvider';
|
||||||
|
import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
|
import HeroBillboard from './components/sections/hero/HeroBillboard';
|
||||||
|
import FeatureCardOne from './components/sections/feature/FeatureCardOne';
|
||||||
|
import GalleryOne from './components/sections/gallery/GalleryOne';
|
||||||
|
import PricingOne from './components/sections/pricing/PricingOne';
|
||||||
|
import ContactTwo from './components/sections/contact/ContactTwo';
|
||||||
|
import FooterStyleTwo from './components/footer/FooterStyleTwo/FooterStyleTwo';
|
||||||
|
|
||||||
|
export default function App() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider defaultTheme="dark" storageKey="vite-ui-theme">
|
||||||
|
<NavbarStyleApple />
|
||||||
|
<HeroBillboard />
|
||||||
|
<FeatureCardOne />
|
||||||
|
<GalleryOne />
|
||||||
|
<PricingOne />
|
||||||
|
<ContactTwo />
|
||||||
|
<FooterStyleTwo />
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user