vite/docs/index.md
Evan You d7c8603897
docs: home page redesign (#18257)
Co-authored-by: Simon Le Marchant <simon@marchantweb.com>
2024-10-02 22:02:46 +08:00

48 lines
2.3 KiB
Markdown

---
title: Vite
titleTemplate: Next Generation Frontend Tooling
pageClass: landing dark
layout: home
aside: false
editLink: false
markdownStyles: false
---
<script setup>
import Hero from '.vitepress/theme/components/landing/1. hero-section/HeroSection.vue'
import FeatureSection from './.vitepress/theme/components/landing/2. feature-section/FeatureSection.vue'
import FrameworksSection from './.vitepress/theme/components/landing/3. frameworks-section/FrameworksSection.vue'
import CommunitySection from './.vitepress/theme/components/landing/4. community-section/CommunitySection.vue'
import SponsorSection from './.vitepress/theme/components/landing/5. sponsor-section/SponsorSection.vue'
import GetStartedSection from '.vitepress/theme/components/landing/6. get-started-section/GetStartedSection.vue'
import FeatureInstantServerStart from './.vitepress/theme/components/landing/2. feature-section/FeatureInstantServerStart.vue'
import FeatureHMR from './.vitepress/theme/components/landing/2. feature-section/FeatureHMR.vue'
import FeatureRichFeatures from './.vitepress/theme/components/landing/2. feature-section/FeatureRichFeatures.vue'
import FeatureOptimizedBuild from './.vitepress/theme/components/landing/2. feature-section/FeatureOptimizedBuild.vue'
import FeatureFlexiblePlugins from './.vitepress/theme/components/landing/2. feature-section/FeatureFlexiblePlugins.vue'
import FeatureTypedAPI from './.vitepress/theme/components/landing/2. feature-section/FeatureTypedAPI.vue'
import FeatureSSRSupport from './.vitepress/theme/components/landing/2. feature-section/FeatureSSRSupport.vue'
import FeatureCI from './.vitepress/theme/components/landing/2. feature-section/FeatureCI.vue'
</script>
<div class="VPHome">
<Hero/>
<FeatureSection title="Redefining developer experience" description="Vite makes web development simple again" type="blue">
<FeatureInstantServerStart />
<FeatureHMR />
<FeatureRichFeatures />
<FeatureOptimizedBuild />
</FeatureSection>
<FeatureSection title="A shared foundation to build upon" type="pink" class="feature-section--flip">
<FeatureFlexiblePlugins />
<FeatureTypedAPI />
<FeatureSSRSupport />
<FeatureCI />
</FeatureSection>
<FrameworksSection />
<CommunitySection />
<SponsorSection />
<GetStartedSection />
</div>