From 53f0229b468dc13715caf91aa3a7af926044f74b Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 14:13:06 +0000 Subject: [PATCH] Add src/App.tsx --- src/App.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/App.tsx diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..a6a31b4 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,22 @@ +import React from 'react'; +import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboard from './components/sections/hero/HeroBillboard'; +import FeatureCardOne from './components/sections/feature/FeatureCardOne'; +import { Testimonial1 } from './components/sections/testimonial/Testimonial1'; +import CtaOne from './components/sections/cta/CtaOne'; +import FooterOne from './components/footer/FooterOne'; + +function App() { + return ( +
+ + + + + + +
+ ); +} + +export default App; \ No newline at end of file