this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

description

alice 1c82b93f 5616b218

+6 -6
+2 -2
src/app/layout.tsx
··· 6 6 7 7 import "./globals.css"; 8 8 9 - import { HOSTNAME } from "#/lib/config"; 9 + import { DESCRIPTION, HOSTNAME } from "#/lib/config"; 10 10 11 11 const sans = Inter({ 12 12 variable: "--font-inter", ··· 29 29 30 30 export const metadata: Metadata = { 31 31 title: HOSTNAME, 32 - description: "a webbed site", 32 + description: DESCRIPTION, 33 33 alternates: { 34 34 canonical: `https://${HOSTNAME}`, 35 35 types: {
+2 -2
src/app/opengraph-image.tsx
··· 1 1 import { ImageResponse } from "next/og"; 2 - import { HOSTNAME } from "#/lib/config"; 2 + import { DESCRIPTION, HOSTNAME } from "#/lib/config"; 3 3 4 4 export const size = { 5 5 width: 1200, ··· 22 22 > 23 23 {HOSTNAME} 24 24 </h1> 25 - <h1 style={{ fontSize: 32 }}>a webbed site</h1> 25 + <h1 style={{ fontSize: 32 }}>{DESCRIPTION}</h1> 26 26 </div> 27 27 ), 28 28 {
+2 -2
src/app/rss/route.ts
··· 5 5 import RSS from "rss"; 6 6 import { unified } from "unified"; 7 7 import { getPosts } from "#/lib/api"; 8 - import { HOSTNAME } from "#/lib/config"; 8 + import { DESCRIPTION, HOSTNAME } from "#/lib/config"; 9 9 10 10 export const dynamic = "force-static"; 11 11 export const revalidate = 3600; // 1 hour ··· 17 17 title: HOSTNAME, 18 18 feed_url: `https://${HOSTNAME}/rss`, 19 19 site_url: `https://${HOSTNAME}`, 20 - description: "a webbed site", 20 + description: DESCRIPTION, 21 21 }); 22 22 23 23 for (const post of posts) {