Changed logo and favicon to the correct ones

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 KiB

After

Width:  |  Height:  |  Size: 203 KiB

View File

@ -1,6 +1,5 @@
import { NextResponse } from "next/server";
import RSS from "rss";
import { subDays } from "date-fns";
import { fetchChaptersRSS } from "@/lib/api";
import { Chapter } from "@/lib/types";

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 218 KiB

View File

@ -34,8 +34,6 @@ export default function RootLayout({ children }: { children: React.ReactNode })
return (
<html lang="en" className={isDarkMode ? "dark" : ""} suppressHydrationWarning>
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script
dangerouslySetInnerHTML={{
__html: `

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>
</>
);
}