diff --git a/src/components/footer.astro b/src/components/footer.astro new file mode 100644 index 0000000..1150977 --- /dev/null +++ b/src/components/footer.astro @@ -0,0 +1,38 @@ +--- +import { Container } from '@/components/container'; +--- + + + + diff --git a/src/components/footer/footer.module.css b/src/components/footer/footer.module.css deleted file mode 100644 index dd6f538..0000000 --- a/src/components/footer/footer.module.css +++ /dev/null @@ -1,21 +0,0 @@ -.footer { - display: flex; - height: 100px; - align-items: center; - - & p { - color: var(--color-foreground-subtle); - font-size: var(--font-sm); - text-align: center; - - & a { - color: var(--color-foreground); - font-weight: 500; - text-decoration: none; - - & span { - color: #c0eb75; - } - } - } -} diff --git a/src/components/footer/footer.tsx b/src/components/footer/footer.tsx deleted file mode 100644 index f03d94b..0000000 --- a/src/components/footer/footer.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { Container } from '@/components/container'; - -import styles from './footer.module.css'; - -export function Footer() { - return ( - - ); -} diff --git a/src/components/footer/index.ts b/src/components/footer/index.ts deleted file mode 100644 index 4248c0b..0000000 --- a/src/components/footer/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { Footer } from './footer'; diff --git a/src/pages/index.astro b/src/pages/index.astro index 2dd6335..aaba44b 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,8 +3,9 @@ import Layout from '@/layouts/layout.astro'; import { Hero } from '@/components/hero'; import { App } from '@/components/app'; -import { Footer } from '@/components/footer'; import { AboutSection, WhySection, ReadySection } from '@/components/sections'; + +import Footer from '@/components/footer.astro'; ---