diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..0686fb3 --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,42 @@ +--- +const columns: Record = { + Product: ['Features', 'Product', 'Download'], + Privacy: ['Privacy Policy', 'Protected Space', 'Security'], + Company: ['About', 'Support', 'Contact'], +} +--- + + diff --git a/src/pages/index.astro b/src/pages/index.astro index 504d746..bf5cbb4 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -5,6 +5,7 @@ import Hero from '../components/Hero.astro' import CoreSystem from '../components/CoreSystem.astro' import UseCases from '../components/UseCases.astro' import DownloadCTA from '../components/DownloadCTA.astro' +import Footer from '../components/Footer.astro' --- @@ -13,4 +14,5 @@ import DownloadCTA from '../components/DownloadCTA.astro' +