11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import Landing from '@/components/landing';
|
|
import { Providers } from '@/components/providers';
|
|
|
|
export default async function PricingPage() {
|
|
return (
|
|
<Providers>
|
|
<Landing />
|
|
</Providers>
|
|
);
|
|
}
|