Clean up the repository
This commit is contained in:
parent
666b2d0e0d
commit
85da5b630f
15 changed files with 7 additions and 50 deletions
BIN
app/favicon.ico
BIN
app/favicon.ico
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB |
|
|
@ -1,4 +1,3 @@
|
|||
import type { Metadata } from "next";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
|
|
@ -6,16 +5,11 @@ const sans = DM_Sans({
|
|||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Hackathon Template",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
interface RootLayoutProps {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}
|
||||
|
||||
export default function RootLayout({ children }: RootLayoutProps) {
|
||||
return (
|
||||
<html lang="en" className={sans.className}>
|
||||
<body>{children}</body>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { api } from "@/lib/eden/server";
|
||||
import { api } from "@/lib/api/server";
|
||||
|
||||
export default async function Home() {
|
||||
const { data: health } = await api.health.get();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue