diff --git a/src/components/AddressBar.astro b/src/components/AddressBar.astro index fb315ca..6b1e0fa 100644 --- a/src/components/AddressBar.astro +++ b/src/components/AddressBar.astro @@ -4,6 +4,7 @@ export interface Props { } const { url } = Astro.props; +const placeholder = 'Type the URL of an article here'; ---
@@ -11,7 +12,7 @@ const { url } = Astro.props; - + diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..0f35d94 --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,26 @@ + + + \ No newline at end of file diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index dcd417c..0210c7f 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,6 +1,7 @@ --- import { ArticleData } from "@extractus/article-extractor"; import "./reset.css"; +import Footer from "../components/Footer.astro"; export interface Props { meta: ArticleData } @@ -50,6 +51,7 @@ const appTitle = `Cozy 🧸${meta.title && `| ${meta.title}`}`;
+