File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ import BaseLayout from " ../layouts/base.astro" ;
3+ ---
4+
5+ <BaseLayout pageTitle =" Dictionary" >
6+ <main class =" flex flex-col max-w-screen-lg p-5 justify-center mx-auto min-h-screen" >
7+ <div class =" m-auto text-center space-y-6" >
8+ <h1 class =" text-5xl md:text-9xl text font-black" >
9+ jargons.dev
10+ </h1 >
11+ <p class =" text-xs md:text-sm" >
12+ A community-driven dictionary that simplifies software, engineering and tech terms for all levels.
13+ </p >
14+ <hr class =" border-gray-100" >
15+ <div class =" md:text-lg" >
16+ We're putting the finishing touches on <strong >jargons.dev</strong >.
17+ <br >
18+ Want to join our test group? Write me a tweet <a href =" https://x.com/babblebey" >@babblebey</a >
19+ </div >
20+ </div >
21+ </main >
22+ </BaseLayout >
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ import Search from "../components/islands/search.jsx";
55import RecentSearches from " ../components/islands/recent-searches.jsx" ;
66
77const dictionary = await getCollection (" dictionary" );
8+
9+ /**
10+ * Temporary Redirect to comming soon
11+ */
12+ return Astro .redirect (" /cs" );
813---
914
1015<BaseLayout
You can’t perform that action at this time.
0 commit comments