feat: Implement core API endpoints, database schema, ActivityPub federation, and initial user interface for the application.

This commit is contained in:
Christopher
2026-01-22 02:44:46 -08:00
parent 537fc5e8c2
commit b76e586bbc
62 changed files with 9447 additions and 115 deletions
+18 -15
View File
@@ -1,34 +1,37 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Inter, Saira_Condensed } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
const sairaCondensed = Saira_Condensed({
subsets: ["latin"],
weight: ["700"],
variable: "--font-saira",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Synapsis",
description: "Federated social network infrastructure",
manifest: "/manifest.json",
icons: {
icon: "/favicon.png",
},
themeColor: "#0a0a0a",
viewport: "width=device-width, initial-scale=1, maximum-scale=1",
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
<html lang="en" className={`${inter.variable} ${sairaCondensed.variable}`}>
<body>{children}</body>
</html>
);
}