12 lines
396 B
TypeScript
12 lines
396 B
TypeScript
import type { Metadata } from 'next'
|
|
import DemoContent from './demo-content'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'rFunds Demo - Alpine Explorer 2026 Group Expenses',
|
|
description: 'See how rFunds handles group expense tracking, budget management, and balance settlement. Live demo powered by rSpace real-time sync.',
|
|
}
|
|
|
|
export default function DemoPage() {
|
|
return <DemoContent />
|
|
}
|