Build public home, contact, and content pages
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user