WIP: add lifestyle block

This commit is contained in:
Danel Kungla
2025-10-21 09:36:29 +03:00
parent fbdfdaf0c1
commit 6dcc91a206
10 changed files with 233 additions and 89 deletions

View File

@@ -0,0 +1,19 @@
'use server';
import React from 'react';
import { Card } from '@kit/ui/shadcn/card';
import { loadLifeStyle } from '../../_lib/server/load-life-style';
const LifeStyleCard = async () => {
const data = await loadLifeStyle();
return (
<Card variant="gradient-success" className="flex flex-col justify-between">
Test
</Card>
);
};
export default LifeStyleCard;