prepare layout

This commit is contained in:
kbe
2025-08-13 15:13:57 +02:00
parent f03aaf1927
commit 18ff5b9beb
12 changed files with 1105 additions and 123 deletions

View File

@@ -0,0 +1,13 @@
"use client";
import React from 'react';
import { Button } from '@shadcn/ui';
const ShadcnButton: React.FC = () => {
return (
<Button onClick={() => alert('Button clicked!')}>
Click me
</Button>
);
};
export default ShadcnButton;

View File

@@ -0,0 +1,16 @@
"use client";
import React from 'react';
const TailwindButton: React.FC = () => {
return (
<button
onClick={() => alert('Button clicked!')}
className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded"
>
Click me
</button>
);
};
export default TailwindButton;