diff --git a/README.md b/README.md index 6405b1f..d7e6766 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Página web para el club de desarrollo de software Binary Brains. ## Comandos **Instlación de dependencias** + ```bash deno install --allow-scripts ``` diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..08fe018 --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,35 @@ +--- +import IconFacebookBrand from "./icons/IconFacebookBrand.astro"; +import IconInstagramBrand from "./icons/IconInstagramBrand.astro"; +import IconGithubBrand from "./icons/IconGithubBrand.astro"; +import IconXBrand from "./icons/IconXBrand.astro"; +--- + + diff --git a/src/components/icons/IconFacebookBrand.astro b/src/components/icons/IconFacebookBrand.astro new file mode 100644 index 0000000..5eb8ad8 --- /dev/null +++ b/src/components/icons/IconFacebookBrand.astro @@ -0,0 +1,20 @@ +--- +interface Props { + class?: string; +} + +const { class: className } = Astro.props; +--- + diff --git a/src/components/icons/IconGithubBrand.astro b/src/components/icons/IconGithubBrand.astro new file mode 100644 index 0000000..5373db5 --- /dev/null +++ b/src/components/icons/IconGithubBrand.astro @@ -0,0 +1,21 @@ +--- + +interface Props { + class?: string; +} + +const { class: className } = Astro.props; +--- + diff --git a/src/components/icons/IconInstagramBrand.astro b/src/components/icons/IconInstagramBrand.astro new file mode 100644 index 0000000..aa9cf92 --- /dev/null +++ b/src/components/icons/IconInstagramBrand.astro @@ -0,0 +1,23 @@ +--- + +interface Props { + class?: string; +} + +const { class: className } = Astro.props; +--- + + diff --git a/src/components/icons/IconXBrand.astro b/src/components/icons/IconXBrand.astro new file mode 100644 index 0000000..350eced --- /dev/null +++ b/src/components/icons/IconXBrand.astro @@ -0,0 +1,21 @@ +--- + +interface Props { + class?: string; +} + +const { class: className } = Astro.props; +--- + diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index ea9eaef..e014219 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,4 +1,5 @@ --- +import Footer from "../components/Footer.astro"; import "../styles/global.css"; interface Props { @@ -19,6 +20,7 @@ const { title } = Astro.props;