-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
83 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
--- | ||
import { Button } from "@/components/ui/button" | ||
--- | ||
<footer class="border-t"> | ||
<footer class="border-t border-pink-100/20 bg-gradient-to-b from-transparent to-pink-50/20"> | ||
<div class="container mx-auto px-4 py-8 text-center"> | ||
<h2 class="text-2xl font-bold tracking-tight mb-4">Open Source</h2> | ||
<h2 class="text-2xl font-bold tracking-tight mb-4 bg-gradient-to-r from-pink-600 to-purple-600 text-transparent bg-clip-text">Open Source</h2> | ||
<p class="text-muted-foreground mb-6">Built with love for the Laravel community. Contributions welcome!</p> | ||
<div class="flex justify-center space-x-4"> | ||
<Button variant="outline" asChild> | ||
<Button variant="outline" className="border-pink-200/20 hover:bg-pink-50" asChild> | ||
<a href="https://github.com/fase22/laramaid">GitHub</a> | ||
</Button> | ||
<Button variant="outline" asChild> | ||
<Button variant="outline" className="border-pink-200/20 hover:bg-pink-50" asChild> | ||
<a href="https://github.com/fase22/laramaid#readme">Documentation</a> | ||
</Button> | ||
<Button variant="outline" asChild> | ||
<Button variant="outline" className="border-pink-200/20 hover:bg-pink-50" asChild> | ||
<a href="https://github.com/fase22/laramaid/issues">Issues</a> | ||
</Button> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
--- | ||
import { Button } from "@/components/ui/button" | ||
--- | ||
|
||
<header class="container mx-auto px-4 py-16 text-center"> | ||
<h1 class="text-4xl font-extrabold tracking-tight lg:text-5xl mb-4">Laramaid</h1> | ||
<p class="text-xl text-muted-foreground mb-8">Seamlessly Bridge Mermaid Class Diagrams and Laravel Code</p> | ||
<Button size="lg">Get Started</Button> | ||
<header class="relative overflow-hidden bg-gradient-to-br from-pink-500 via-purple-500 to-pink-400"> | ||
<div class="absolute inset-0 bg-grid-white/[0.1] bg-[size:60px_60px]"></div> | ||
<!-- Floating cubes --> | ||
<div class="absolute top-1/4 -left-12 w-24 h-24 rotate-12 border border-white/20 rounded-xl"></div> | ||
<div class="absolute bottom-1/4 -right-12 w-24 h-24 -rotate-12 border border-white/20 rounded-xl"></div> | ||
|
||
<div class="container relative mx-auto px-4 py-24 text-center"> | ||
<h1 class="text-5xl font-extrabold tracking-tight lg:text-6xl mb-4 text-white">Laramaid</h1> | ||
<p class="text-xl text-white/90 mb-8 max-w-2xl mx-auto">Seamlessly Bridge Mermaid Class Diagrams and Laravel Code</p> | ||
<Button size="lg" variant="secondary" class="bg-white text-pink-600 hover:bg-white/90">Get Started</Button> | ||
</div> | ||
</header> | ||
|
||
<section class="container mx-auto px-4 py-8"> | ||
<h2 class="text-3xl font-bold tracking-tight mb-4">Transform Your Design Into Code</h2> | ||
<p class="text-muted-foreground"> | ||
<section class="container mx-auto px-4 py-16"> | ||
<h2 class="text-3xl font-bold tracking-tight mb-4 bg-gradient-to-r from-pink-600 to-purple-600 text-transparent bg-clip-text">Transform Your Design Into Code</h2> | ||
<p class="text-muted-foreground text-lg"> | ||
Convert your Mermaid class diagrams directly into fully structured Laravel applications. | ||
Laramaid bridges the gap between design and implementation, saving you valuable development time. | ||
</p> | ||
</section> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters