Build public home, contact, and content pages

This commit is contained in:
2026-05-22 15:14:35 +00:00
parent 85fc02fcfa
commit 4e58794c50
11 changed files with 911 additions and 140 deletions

View File

@@ -1,3 +1,6 @@
import Link from 'next/link';
import { site } from '@/lib/site';
export function SiteFooter() {
const year = new Date().getFullYear();
@@ -5,7 +8,7 @@ export function SiteFooter() {
<footer className="site-footer">
<div>
<p className="footer-label">Status</p>
<p>Phase 1 scaffold underway.</p>
<p>{site.tagline}</p>
</div>
<div>
<p className="footer-label">Build</p>
@@ -14,7 +17,14 @@ export function SiteFooter() {
{process.env.NEXT_PUBLIC_BUILD_ITERATION || '0'}
</p>
</div>
<div>
<p className="footer-label">Contact</p>
<p>
<Link href="/contact">{site.contact.email}</Link>
<br />
{site.contact.phone}
</p>
</div>
</footer>
);
}