@lastbrain/app 0.1.13 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/scripts/init-app.js +10 -19
- package/dist/styles.css +1779 -2
- package/dist/templates/DefaultDoc.d.ts.map +1 -1
- package/dist/templates/DefaultDoc.js +8 -2
- package/dist/templates/SimpleDocPage.js +2 -2
- package/dist/templates/SimpleHomePage.js +1 -1
- package/package.json +6 -7
- package/src/scripts/init-app.ts +10 -19
- package/src/styles.css +3 -1
- package/src/templates/DefaultDoc.tsx +193 -0
- package/src/templates/SimpleDocPage.tsx +2 -2
- package/src/templates/SimpleHomePage.tsx +3 -3
|
@@ -28,7 +28,7 @@ export function SimpleHomePage({ showAuth }: HomePageProps) {
|
|
|
28
28
|
return (
|
|
29
29
|
<div className="min-h-screen">
|
|
30
30
|
{/* Hero Section */}
|
|
31
|
-
<section className="relative overflow-hidden bg-
|
|
31
|
+
<section className="relative overflow-hidden bg-gradient-to-br from-blue-50 via-purple-50 to-pink-50 dark:from-slate-900 dark:via-purple-900/20 dark:to-blue-900/20">
|
|
32
32
|
<div className="absolute inset-0 bg-grid-slate-200/50 dark:bg-grid-slate-700/25 mask-[radial-gradient(ellipse_at_center,transparent_20%,black)]"></div>
|
|
33
33
|
|
|
34
34
|
<div className="relative container mx-auto px-4 py-24 md:py-32">
|
|
@@ -40,7 +40,7 @@ export function SimpleHomePage({ showAuth }: HomePageProps) {
|
|
|
40
40
|
</span>
|
|
41
41
|
</div>
|
|
42
42
|
|
|
43
|
-
<h1 className="text-5xl md:text-7xl font-bold mb-6 bg-
|
|
43
|
+
<h1 className="text-5xl md:text-7xl font-bold mb-6 bg-gradient-to-r from-blue-600 via-purple-600 to-pink-600 bg-clip-text text-transparent">
|
|
44
44
|
Bienvenue sur LastBrain
|
|
45
45
|
</h1>
|
|
46
46
|
|
|
@@ -358,7 +358,7 @@ export function SimpleHomePage({ showAuth }: HomePageProps) {
|
|
|
358
358
|
</section>
|
|
359
359
|
|
|
360
360
|
{/* CTA Section */}
|
|
361
|
-
<section className="py-20 bg-
|
|
361
|
+
<section className="py-20 bg-gradient-to-r from-blue-600 to-purple-600 text-white">
|
|
362
362
|
<div className="container mx-auto px-4">
|
|
363
363
|
<div className="max-w-3xl mx-auto text-center">
|
|
364
364
|
<h2 className="text-3xl md:text-4xl font-bold mb-4">
|