The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix footer imports

Luna a8ae1ddf 15a58d1a

+5 -5
+1 -1
app/ai-gallery/(home)/layout.tsx
··· 5 5 import { BsDiscord } from "react-icons/bs"; 6 6 import { HiUserAdd } from "react-icons/hi"; 7 7 8 - import Footer from "@/components/footer"; 8 + import { Footer } from "@/components/footer"; 9 9 import { ServerButton } from "@/components/server-button"; 10 10 import CommandPic from "@/public/image-command.webp"; 11 11 import cn from "@/utils/cn";
+2 -2
app/ai-gallery/[uploadId]/layout.tsx
··· 4 4 import Link from "next/link"; 5 5 import { HiArrowLeft, HiHome, HiPlus } from "react-icons/hi"; 6 6 7 - import Footer from "@/components/footer"; 7 + import { Footer } from "@/components/footer"; 8 8 import Notice from "@/components/notice"; 9 9 import { ScreenMessage, SupportButton } from "@/components/screen-message"; 10 10 import { ServerButton } from "@/components/server-button"; ··· 22 22 children: React.ReactNode; 23 23 } 24 24 25 - export const revalidate = 60 * 60; 25 + export const revalidate = 3600; 26 26 27 27 export const generateMetadata = async ({ 28 28 params
+2 -2
app/ai-gallery/generate/layout.tsx
··· 3 3 import Link from "next/link"; 4 4 import { HiArrowLeft } from "react-icons/hi"; 5 5 6 - import Footer from "@/components/footer"; 6 + import { Footer } from "@/components/footer"; 7 7 import { getBaseUrl, getCanonicalUrl } from "@/utils/urls"; 8 8 9 9 export interface Props { ··· 11 11 children: React.ReactNode; 12 12 } 13 13 14 - export const revalidate = 60 * 60; 14 + export const revalidate = 3600; 15 15 16 16 export const generateMetadata = async ({ 17 17 params