File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed
Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 22 <div class =" min-h-screen bg-white flex flex-col" >
33 <SiteHeader />
44 <main class =" flex-grow" >
5- <HomeHero />
6- <ProjectsList />
7- <GetInvolved />
5+ <NuxtPage />
86 </main >
97 <SiteFooter />
108 </div >
1311<script setup>
1412// Import components
1513import SiteHeader from ' ~/components/SiteHeader.vue'
16- import HomeHero from ' ~/components/HomeHero.vue'
17- import GetInvolved from ' ~/components/GetInvolved.vue'
1814import SiteFooter from ' ~/components/SiteFooter.vue'
1915 </script >
File renamed without changes.
Original file line number Diff line number Diff line change 1+ <template >
2+ <div >
3+ <HomeHero />
4+ <FeaturedProjects />
5+ <GetInvolved />
6+ </div >
7+ </template >
8+
9+ <script setup>
10+ // Import components
11+ import HomeHero from ' ~/components/HomeHero.vue'
12+ import FeaturedProjects from ' ~/components/FeaturedProjects.vue'
13+ import GetInvolved from ' ~/components/GetInvolved.vue'
14+ </script >
You can’t perform that action at this time.
0 commit comments