diff --git a/apps/dashboard/src/@/components/blocks/app-footer.tsx b/apps/dashboard/src/@/components/blocks/app-footer.tsx
index 5f104b6d774..877b1aa1996 100644
--- a/apps/dashboard/src/@/components/blocks/app-footer.tsx
+++ b/apps/dashboard/src/@/components/blocks/app-footer.tsx
@@ -15,6 +15,37 @@ type AppFooterProps = {
containerClassName?: string;
};
+const footerLinks = [
+ {
+ href: "/home",
+ label: "Home",
+ },
+ {
+ href: "https://blog.thirdweb.com",
+ label: "Blog",
+ },
+ {
+ href: "https://portal.thirdweb.com/changelog",
+ label: "Changelog",
+ },
+ {
+ href: "https://feedback.thirdweb.com/",
+ label: "Feedback",
+ },
+ {
+ href: "https://thirdweb.com/privacy-policy",
+ label: "Privacy Policy",
+ },
+ {
+ href: "https://thirdweb.com/terms",
+ label: "Terms of Service",
+ },
+ {
+ href: "https://thirdweb.com/chainlist",
+ label: "Chainlist",
+ },
+];
+
export function AppFooter(props: AppFooterProps) {
return (
);
}
+
+function FooterLink(props: {
+ href: string;
+ label: string;
+ prefetch?: boolean;
+}) {
+ return (
+
+ {props.label}
+
+ );
+}