diff --git a/package-lock.json b/package-lock.json index d13cbd8..bec50df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "1.4.0", + "version": "1.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "1.4.0", + "version": "1.5.0", "dependencies": { "@astrojs/check": "0.9.4", "@astrojs/cloudflare": "^11.2.0", diff --git a/package.json b/package.json index 79e2907..1c58bd4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "coryd.dev", "type": "module", - "version": "1.4.0", + "version": "1.5.0", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/src/components/search/SearchForm.astro b/src/components/search/SearchForm.astro new file mode 100644 index 0000000..665f9fc --- /dev/null +++ b/src/components/search/SearchForm.astro @@ -0,0 +1,29 @@ +
++ You can find posts, links, artists, genres, movies, shows and books via the field below (though it only surfaces + movies and shows I've watched and books I've written something about). +
+ diff --git a/src/components/search/SearchLogic.astro b/src/components/search/SearchLogic.astro new file mode 100644 index 0000000..9c2997b --- /dev/null +++ b/src/components/search/SearchLogic.astro @@ -0,0 +1,164 @@ + diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 3e62195..f6ac929 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -109,7 +109,7 @@ const pageDescription = md(description); diff --git a/src/pages/search.astro b/src/pages/search.astro index dd8fd39..0030e3e 100644 --- a/src/pages/search.astro +++ b/src/pages/search.astro @@ -1,5 +1,8 @@ --- import Layout from "@layouts/Layout.astro"; +import SearchIntro from "@components/search/SearchIntro.astro" +import SearchForm from "@components/search/SearchForm.astro" +import SearchLogic from "@components/search/SearchLogic.astro" import AddonLinks from "@components/blocks/links/AddonLinks.astro"; import { getPopularPosts } from "@utils/getPopularPosts.js"; import { fetchAllPosts } from "@data/posts.js"; @@ -24,255 +27,8 @@ const description = description={description} currentUrl={Astro.url.pathname} > -- You can find posts, links, artists, genres, movies, shows and books via the field below (though it only surfaces - movies and shows I've watched and books I've written something about). -
- - -