mirror of
https://github.com/Mail-0/Zero.git
synced 2026-07-01 08:16:28 +00:00
i can finally go sleep
This commit is contained in:
17
app/page.tsx
17
app/page.tsx
@@ -1,5 +1,4 @@
|
||||
import { cookies } from "next/headers";
|
||||
import Image from "next/image";
|
||||
|
||||
import { Mail } from "@/components/mail/mail";
|
||||
import { accounts, mails } from "@/components/mail/data";
|
||||
@@ -14,22 +13,6 @@ export default async function MailPage() {
|
||||
|
||||
return (
|
||||
<div className="bg-white dark:bg-background">
|
||||
<div className="md:hidden">
|
||||
<Image
|
||||
src="/examples/mail-dark.png"
|
||||
width={1280}
|
||||
height={727}
|
||||
alt="Mail"
|
||||
className="hidden dark:block"
|
||||
/>
|
||||
<Image
|
||||
src="/examples/mail-light.png"
|
||||
width={1280}
|
||||
height={727}
|
||||
alt="Mail"
|
||||
className="block dark:hidden"
|
||||
/>
|
||||
</div>
|
||||
<div className="hidden flex-col md:flex dark:text-gray-100">
|
||||
<Mail
|
||||
accounts={accounts}
|
||||
|
||||
@@ -4,7 +4,7 @@ const TITLE = 'MAIL';
|
||||
const DESCRIPTION =
|
||||
'An Open Source Gmail Alternative.';
|
||||
|
||||
const BASE_URL = '';
|
||||
const BASE_URL = 'https://mail.nizzy.dev';
|
||||
|
||||
export const siteConfig: Metadata = {
|
||||
title: TITLE,
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
output: 'standalone',
|
||||
reactStrictMode: true,
|
||||
swcMinify: true,
|
||||
/* config options here */
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
||||
Reference in New Issue
Block a user