Commit 58c84ea4 by PLN (Algolia)

chore: Finetune landing

parent e076471b
......@@ -38,7 +38,7 @@ export default function Home({ posts, talks }) {
<h3>
code into <em>solutions to human problems</em>
</h3><br />
<p className="description">
<div className="description">
At <a href="https://algolia.com">Algolia</a>, I've crafted tools that help you{" "}
<HoverTooltip
content={
......@@ -99,7 +99,8 @@ export default function Home({ posts, talks }) {
>
show them your world
</HoverTooltip>.<br />
Nowadays, I create GenAI tools for{" "}
<div className="divider" />
Nowadays, I create GenAI tools for builders of{" "}
<HoverTooltip
content="Blending state-of-the-art LLMs with a distributed search engine to create a new kind of content discovery experiences."
links={[
......@@ -109,10 +110,10 @@ export default function Home({ posts, talks }) {
}
]}
>
builders of generative experiences
generative experiences
</HoverTooltip><br />{" "}
that blend the best of search and language understanding.
</p>
blending search engines and language models together.
</div>
</section>
<section className={`${utilStyles.headingMd} ${utilStyles.padding1px}`}>
<Link href="/parvagues/" className={utilStyles.sectionLink}>
......
......@@ -39,9 +39,9 @@ export default function Poems({ poems }) {
const search = searchTerm.toLowerCase();
const titleMatch = p.title?.toLowerCase().includes(search);
const contentMatch = p.contentHtml?.toLowerCase().includes(search);
const tagsMatch = p.tags?.some(tag => tag.toLowerCase().includes(search));
return titleMatch || contentMatch;
return titleMatch || tagsMatch;
});
// Sort filtered poems
......@@ -78,7 +78,7 @@ export default function Poems({ poems }) {
<input
type="text"
className={utilStyles.searchBar}
placeholder="Search poems by title or content..."
placeholder="Title or tag(s) "
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
aria-label="Search poems"
......
......@@ -89,3 +89,9 @@ h1 a, h2 a, h3 a, h4 a, h5 a {
font-size: 1.2rem;
line-height: 2.5;
}
.divider {
margin: 1.5em 0 0.75em 0;
height: 1px;
background-color: #e0e0e0;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment