Changed logo and favicon to the correct ones

This commit is contained in:
2025-01-12 23:40:56 -05:00
parent 956b02b2cd
commit a179d0b392
5 changed files with 6 additions and 11 deletions

View File

@@ -1,7 +1,11 @@
import { Book } from "@/lib/types";
import { fetchBooks } from "@/lib/api";
import { Ad } from "@/lib/types";
import Head from "next/head";
export const metadata = {
title: 'Null Translation Group',
description: 'This is the Something page description.',
};
export default async function HomePage() {
let books: Book[] = [];
@@ -18,11 +22,7 @@ export default async function HomePage() {
}
return (
<>
<Head>
<title>Null Translation Group</title>
<meta name="description" content="Null Translation Group main hub for all the books we are currently translating" />
</Head>
<div className="mx-auto p-6 bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 min-h-screen">
<div className="hidden md:block bg-yellow-500 text-black py-2 px-4 rounded-lg hover:bg-yellow-600 transition duration-200 mb-6">
<a
@@ -69,7 +69,5 @@ export default async function HomePage() {
)})}
</div>
</div>
</>
);
}