first commit
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
import Header from './components/Header';
|
||||
import Hero from './components/Hero';
|
||||
import DownloadSection from './components/DownloadSection';
|
||||
import Features from './components/Features';
|
||||
import WhatYouCanDo from './components/WhatYouCanDo';
|
||||
import WhyAramland from './components/WhyAramland';
|
||||
import FreeTrial from './components/FreeTrial';
|
||||
import ScientificBenefits from './components/ScientificBenefits';
|
||||
import CallToAction from './components/CallToAction';
|
||||
import Footer from './components/Footer';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div className="min-h-screen bg-gradient-to-b from-blue-50 via-white to-green-50" dir="rtl">
|
||||
<Header />
|
||||
|
||||
<main className="max-w-4xl mx-auto px-8 py-16">
|
||||
<Hero />
|
||||
<DownloadSection />
|
||||
<Features />
|
||||
<WhatYouCanDo />
|
||||
<WhyAramland />
|
||||
<FreeTrial />
|
||||
<ScientificBenefits />
|
||||
<CallToAction />
|
||||
</main>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user