From b95f80cfb6a13f965795fec0c81c507af5864c9b Mon Sep 17 00:00:00 2001 From: KoCoder Date: Sat, 30 May 2026 19:09:24 +0200 Subject: [PATCH] Test: CI/CD --- src/routes/index.tsx | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 4711057..8136bc2 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -1,17 +1,27 @@ -import { createFileRoute } from '@tanstack/solid-router' -import { Button } from '~/components/ui/button' -import { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '~/components/ui/card' -import { Input } from '~/components/ui/input' -import { Label } from '~/components/ui/label' +import { createFileRoute } from "@tanstack/solid-router"; +import { Button } from "~/components/ui/button"; +import { + Card, + CardAction, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "~/components/ui/card"; +import { Input } from "~/components/ui/input"; +import { Label } from "~/components/ui/label"; -export const Route = createFileRoute('/')({ component: App }) +export const Route = createFileRoute("/")({ component: App }); function App() { return (
-

Project ready!

+

+ Project and deployment ready and automated! +

You may now add components and start building.

We've already added the button component for you.

@@ -68,8 +78,5 @@ function App() {
- ) + ); } - - - \ No newline at end of file