From 211a873398e7e7ec0a52b37ba7b54e807b421b5a Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 14:16:25 +0000 Subject: [PATCH] Add src/App.tsx --- src/App.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/App.tsx diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..659f14a --- /dev/null +++ b/src/App.tsx @@ -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 ( + + + + + + + + + + ); +} \ No newline at end of file