feat: Updated more headers with decrypt
8b498282
2 file(s) · +4 −1
| 1 | 1 | --- |
|
| 2 | + | import DecryptingHeader from "@/components/DecryptingHeader"; |
|
| 2 | 3 | import PageLayout from "@/layouts/Base"; |
|
| 3 | 4 | import GuestbookFeed from "src/components/GuestbookFeed"; |
|
| 4 | 5 | ||
| 10 | 11 | <PageLayout meta={meta}> |
|
| 11 | 12 | <div class="space-y-6"> |
|
| 12 | 13 | <div class="flex flex-col gap-2 mb-6"> |
|
| 13 | - | <h1 class="font-bold text-2xl">Guestbook</h1> |
|
| 14 | + | <DecryptingHeader text="Guestbook" className="title mb-6" /> |
|
| 14 | 15 | <p>Welcome to my little digital guestbook! I built this using PGlite, Railway, Clerk, and <a href="https://pinata.cloud" class="style-link" target="_blank" rel="noreferrer">Pinata</a>, and you can <a href="/posts/building-a-guestbook-with-pglite-clerk-and-pinata" class="style-link">read about it here</a>. Login with your Github account to leave a message!</p> |
|
| 15 | 16 | </div> |
|
| 16 | 17 | <GuestbookFeed API_URL={import.meta.env.PUBLIC_API_URL} client:only="react" /> |
|
| 1 | 1 | --- |
|
| 2 | 2 | import PageLayout from "@/layouts/Base"; |
|
| 3 | 3 | import { SOCIAL_LINKS } from "@/data/constants"; |
|
| 4 | + | import DecryptingHeader from "@/components/DecryptingHeader"; |
|
| 4 | 5 | ||
| 5 | 6 | const meta = { |
|
| 6 | 7 | title: "Links", |
|
| 10 | 11 | ||
| 11 | 12 | <PageLayout meta={meta}> |
|
| 12 | 13 | <div class="space-y-6"> |
|
| 14 | + | <DecryptingHeader text="Links" className="title mb-6" /> |
|
| 13 | 15 | <ul class="flex flex-col items-start gap-x-4 sm:flex-initial"> |
|
| 14 | 16 | <li> |
|
| 15 | 17 | <a class="flex items-center gap-4 p-2 sm:hover:text-link" href={SOCIAL_LINKS.website}> |
|