Test: CI/CD
All checks were successful
Build and Push Docker Image / build (push) Successful in 5m29s
All checks were successful
Build and Push Docker Image / build (push) Successful in 5m29s
This commit is contained in:
@@ -1,17 +1,27 @@
|
|||||||
import { createFileRoute } from '@tanstack/solid-router'
|
import { createFileRoute } from "@tanstack/solid-router";
|
||||||
import { Button } from '~/components/ui/button'
|
import { Button } from "~/components/ui/button";
|
||||||
import { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '~/components/ui/card'
|
import {
|
||||||
import { Input } from '~/components/ui/input'
|
Card,
|
||||||
import { Label } from '~/components/ui/label'
|
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() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<div class="flex min-h-svh p-6">
|
<div class="flex min-h-svh p-6">
|
||||||
<div class="flex max-w-md min-w-0 flex-col gap-4 text-sm leading-loose">
|
<div class="flex max-w-md min-w-0 flex-col gap-4 text-sm leading-loose">
|
||||||
<div>
|
<div>
|
||||||
<h1 class="font-medium">Project ready!</h1>
|
<h1 class="font-medium">
|
||||||
|
Project and deployment ready and automated!
|
||||||
|
</h1>
|
||||||
<p>You may now add components and start building.</p>
|
<p>You may now add components and start building.</p>
|
||||||
<p>We've already added the button component for you.</p>
|
<p>We've already added the button component for you.</p>
|
||||||
<Button class="mt-2">Button</Button>
|
<Button class="mt-2">Button</Button>
|
||||||
@@ -68,8 +78,5 @@ function App() {
|
|||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user