forked from bitcraft3r/bolt-boilerplate-nextjs
-
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.
style: rebrand to Bolt, change theme to yellow
- Loading branch information
1 parent
31cba60
commit b4cef53
Showing
22 changed files
with
85 additions
and
71 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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { AvatarFallback } from "@/components/ui/avatar"; | ||
import { Zap } from "lucide-react"; | ||
|
||
const AvatarFallbackLogo = () => { | ||
return (<AvatarFallback> | ||
<Zap color="orange" fill="gold" className="h-[40px] w-[40px] rounded-full p-2 bg-neutral-100 dark:hidden" /> | ||
<Zap color="orange" fill="gold" className="h-[40px] w-[40px] rounded-full p-2 bg-neutral-900 hidden dark:block" /> | ||
</AvatarFallback>); | ||
} | ||
|
||
export default AvatarFallbackLogo; |
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,25 +1,37 @@ | ||
"use client"; | ||
|
||
import { SignUpButton } from "@clerk/nextjs"; | ||
import { useConvexAuth } from "convex/react"; | ||
import { LoaderCircle } from "lucide-react"; | ||
import { LoaderCircle, Zap } from "lucide-react"; | ||
|
||
import { Button } from "@/components/ui/button"; | ||
|
||
export const Heading = () => { | ||
const { isAuthenticated, isLoading } = useConvexAuth(); | ||
|
||
return ( | ||
<div className="max-w-3xl space-y-4"> | ||
<h1 className="text-3xl sm:text-5xl md:text-6xl font-bold"> | ||
Unlimited Likes, Infinite Connections. It's <span className="underline">Liit</span> | ||
Supercharge Your Next.js Projects with <span className="underline">Bolt</span> Boilerplate | ||
|
||
</h1> | ||
<h3 className="text-base sm:text-xl md:text-2xl font-medium"> | ||
Experience microblogging with limitless likes and seamless interactions powered by Convex's real-time database. | ||
Build dynamic web apps lightning fast with Bolt: the Next.js framework integrated with Convex for seamless interactions, Clerk for authentication, and Shadcn for stunning UI. | ||
|
||
</h3> | ||
{isLoading && ( | ||
<div className="w-full flex items-center justify-center"> | ||
<LoaderCircle className="w-4 h-4 animate-spin" /> | ||
</div> | ||
)} | ||
{!isLoading && ( | ||
<SignUpButton mode="modal"> | ||
<Button> | ||
Setup in minutes | ||
<Zap className="h-4 w-4 ml-2" /> | ||
</Button> | ||
</SignUpButton> | ||
)} | ||
</div> | ||
); | ||
} |
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
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 +1 @@ | ||
About Liit | ||
About Bolt Boilerplate for Next.js and Convex |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 +1 @@ | ||
About Liit | ||
About Bolt Boilerplate for Next.js and Convex |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.