refactor: update footer config and remove mode toggle component

This commit is contained in:
javayhu 2025-02-26 23:58:45 +08:00
parent 9dbddad6e4
commit 5ba7ab03ad
3 changed files with 117 additions and 112 deletions

View File

@ -1,7 +1,6 @@
"use client";
import { Icons } from "@/components/icons/icons";
import { ModeToggle } from "@/components/layout/mode-toggle";
import { footerConfig } from "@/config/footer";
import { siteConfig } from "@/config/site";
import { cn } from "@/lib/utils";

View File

@ -21,9 +21,9 @@ export const footerConfig: FooterConfig = {
{
title: "Company",
items: [
{ title: "Waitlist", href: "/waitlist" },
{ title: "About Us", href: "/about" },
{ title: "Contact Us", href: "/contact" },
{ title: "Careers", href: "/careers" },
],
},
{

View File

@ -10,9 +10,15 @@ export default {
theme: {
extend: {
fontFamily: {
sans: ['var(--font-geist-sans)'],
mono: ['var(--font-geist-mono)'],
serif: ['var(--font-source-serif)'],
sans: [
'var(--font-geist-sans)'
],
mono: [
'var(--font-geist-mono)'
],
serif: [
'var(--font-source-serif)'
]
},
colors: {
background: 'hsl(var(--background))',