diff --git a/src/components/footer/footer.module.css b/src/components/footer/footer.module.css new file mode 100644 index 0000000..e814bb3 --- /dev/null +++ b/src/components/footer/footer.module.css @@ -0,0 +1,20 @@ +.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); + text-decoration: none; + + & span { + color: #c0eb75; + } + } + } +} diff --git a/src/components/footer/footer.tsx b/src/components/footer/footer.tsx new file mode 100644 index 0000000..f03d94b --- /dev/null +++ b/src/components/footer/footer.tsx @@ -0,0 +1,18 @@ +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 new file mode 100644 index 0000000..4248c0b --- /dev/null +++ b/src/components/footer/index.ts @@ -0,0 +1 @@ +export { Footer } from './footer'; diff --git a/src/pages/index.astro b/src/pages/index.astro index 4130e39..f38bc12 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,21 +3,15 @@ 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'; --- - - - - - - - + + + + + + - -