We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
title
todo
word.astro
1 parent a660de2 commit 15bded6Copy full SHA for 15bded6
2 files changed
src/layouts/word.astro
@@ -1,4 +1,7 @@
1
---
2
+/**
3
+ * @todo Get URL of previous page (maybe from `referer`) and return there on Navigation back; good for browse page
4
+ */
5
import BaseLayout from "./base.astro";
6
import { getCollection } from "astro:content";
7
import Navbar from "../components/navbar.astro";
src/pages/index.astro
@@ -7,7 +7,10 @@ import RecentSearches from "../components/islands/recent-searches.jsx";
const dictionary = await getCollection("dictionary");
8
9
10
-<BaseLayout pageTitle="Dictionary">
+<BaseLayout
11
+ pageTitle="Jargons.dev"
12
+ subtitle="Simplified Meaning & Definition to Technical Terms"
13
+>
14
<main class="flex flex-col max-w-screen-lg p-5 justify-center mx-auto min-h-screen">
15
<!-- Title -->
16
<div class="mb-4 md:mb-6">
0 commit comments