diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 58b89b88..ecb48c5c 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,49 +1,73 @@ --- +import { Icon } from "astro-icon/components"; import ActionButton from "./ActionButton.astro"; -import FooterSection from "./Footer/FooterSection.astro"; import Logo from "./Logo.astro"; - -interface Props { - class?: string; -} -const props = Astro.props; --- - + diff --git a/src/components/Footer/FooterSection.astro b/src/components/Footer/FooterSection.astro deleted file mode 100644 index fcc8aaf5..00000000 --- a/src/components/Footer/FooterSection.astro +++ /dev/null @@ -1,48 +0,0 @@ ---- -import { Icon } from "astro-icon/components"; - -interface Props { - title: string; - links: { title: string; to: string }[]; -} -const { title, links } = Astro.props; ---- - -
-

{title}

- -
-