Refactored website components. New layout.

This commit is contained in:
Mike Cao
2025-05-20 01:12:07 -07:00
parent 6e41ba2e2c
commit 06f76dda13
35 changed files with 1159 additions and 987 deletions

View File

@@ -0,0 +1,6 @@
'use client';
import { Column } from '@umami/react-zen';
export function GoalsPage({ websiteId }: { websiteId: string }) {
return <Column>Goals {websiteId}</Column>;
}

View File

@@ -0,0 +1,12 @@
import { Metadata } from 'next';
import { GoalsPage } from './GoalsPage';
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
const { websiteId } = await params;
return <GoalsPage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Goals',
};