Skip to content

Commit 6fbe2eb

Browse files
committed
merge: unify feature/styles changes into main for updated UI design
1 parent 0f4160a commit 6fbe2eb

12 files changed

Lines changed: 35 additions & 19 deletions

app/favicon.ico

19.4 KB
Binary file not shown.

app/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ body {
2020
--card-foreground: 0 0% 3.9%;
2121
--popover: 0 0% 100%;
2222
--popover-foreground: 0 0% 3.9%;
23-
--primary: 0 0% 9%;
24-
--primary-foreground: 0 0% 98%;
23+
--primary: 168 77% 40%;
24+
--primary-foreground: 0 0% 100%;
2525
--secondary: 0 0% 96.1%;
2626
--secondary-foreground: 0 0% 9%;
2727
--muted: 0 0% 96.1%;

app/layout.tsx

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,38 @@
1-
import type { Metadata } from 'next'
2-
import './globals.css'
1+
import type { Metadata } from "next"
2+
import Image from "next/image"
3+
import "./globals.css"
34

45
export const metadata: Metadata = {
5-
title: 'InclusivAI v1 App',
6-
description: 'Created with v1',
7-
generator: 'v1.dev',
6+
title: "InclusivAI v1 App",
7+
description: "Created with v1",
8+
generator: "v1.dev",
89
}
910

1011
export default function RootLayout({
1112
children,
12-
}: Readonly<{
13+
}: {
1314
children: React.ReactNode
14-
}>) {
15+
}) {
1516
return (
16-
<html lang="en">
17-
<body>{children}</body>
17+
<html lang="en" className="bg-background text-foreground min-h-screen">
18+
<body className="min-h-screen flex flex-col">
19+
20+
<header className="p-4">
21+
<Image
22+
src="/images/placeholder-logo1.png"
23+
alt="InclusivAI Logo"
24+
width={200}
25+
height={65}
26+
className="mx-auto rounded-md shadow-sm border border-gray-300 p-2"
27+
priority
28+
/>
29+
</header>
30+
31+
32+
<main className="flex-1 container mx-auto">
33+
{children}
34+
</main>
35+
</body>
1836
</html>
1937
)
2038
}

app/page.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import { useToast } from "@/hooks/use-toast"
1515

1616
export default function InclusivAI() {
1717
const { toast } = useToast()
18-
// Eliminamos const [coachName, setCoachName] = useState("")
1918
const [clientName, setClientName] = useState("")
2019
const [notes, setNotes] = useState("")
2120
const [selectedForms, setSelectedForms] = useState<string[]>([])
@@ -29,7 +28,7 @@ export default function InclusivAI() {
2928
const handleFormSubmit = async (e: React.FormEvent) => {
3029
e.preventDefault()
3130

32-
// Quitamos la validación de coachName
31+
3332
if (!clientName || selectedForms.length === 0 || !audioFile) {
3433
toast({
3534
title: "Missing information",
@@ -161,7 +160,7 @@ export default function InclusivAI() {
161160

162161
return (
163162
<main className="container mx-auto px-4 py-8 max-w-4xl">
164-
<h1 className="text-3xl font-bold text-center mb-8 text-primary">InclusivAI</h1>
163+
<h1 className="text-2xl font-bold text-center mb-8 text-primary">InclusivAI</h1>
165164
<p className="text-center mb-8 text-muted-foreground">Supported Employment Job Coaches Solution</p>
166165

167166
<div className="grid gap-8 md:grid-cols-[2fr_1fr]">

public/favicon.ico

19.4 KB
Binary file not shown.
55.8 KB
Loading

0 commit comments

Comments
 (0)