-
-
Notifications
You must be signed in to change notification settings - Fork 694
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from ixartz/small-improvement2
Small-improvement2
- Loading branch information
Showing
18 changed files
with
181 additions
and
103 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,9 +85,13 @@ Clone this project and use it to create your own SaaS. You can check the live de | |
| --- | --- | | ||
| [![Next.js Boilerplate SaaS Sign Up](public/assets/images/nextjs-boilerplate-saas-sign-up.png)](https://react-saas.com/sign-up) | [![Next.js Boilerplate SaaS Sign In](public/assets/images/nextjs-boilerplate-saas-sign-in.png)](https://react-saas.com/sign-in) | | ||
|
||
| Landing Page Dark Mode (Pro Version) | User Dashboard Dark Mode (Pro Version) | | ||
| Landing Page with Dark Mode (Pro Version) | User Dashboard with Dark Mode (Pro Version) | | ||
| --- | --- | | ||
| [![Next.js Boilerplate SaaS Landing Page Dark Mode](public/assets/images/nextjs-boilerplate-saas-landing-page-dark-mode.png)](https://pro-demo.nextjs-boilerplate.com) | [![Next.js Boilerplate SaaS User Dashboard Dark Mode](public/assets/images/nextjs-boilerplate-saas-user-dashboard-dark-mode.png)](https://pro-demo.nextjs-boilerplate.com/dashboard) | | ||
| [![Next.js Boilerplate SaaS Landing Page Dark Mode](public/assets/images/nextjs-boilerplate-saas-landing-page-dark-mode.png)](https://pro-demo.nextjs-boilerplate.com) | [![Next.js Boilerplate SaaS User Dashboard Dark Mode](public/assets/images/nextjs-boilerplate-saas-user-dashboard-sidebar-dark-mode.png)](https://pro-demo.nextjs-boilerplate.com/dashboard) | | ||
|
||
| User Dashboard with Sidebar (Pro Version) | | ||
| --- | | ||
| [![Next.js Boilerplate SaaS User Dashboard Sidebar](public/assets/images/nextjs-boilerplate-saas-user-dashboard-sidebar.png)](https://pro-demo.nextjs-boilerplate.com) | | ||
|
||
### Features | ||
|
||
|
@@ -486,4 +490,6 @@ See [LICENSE](LICENSE) for more information. | |
|
||
Made with ♥ by [CreativeDesignsGuru](https://creativedesignsguru.com) [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40Ixartz)](https://twitter.com/ixartz) | ||
|
||
Looking for a custom boilerplate to kick off your project? I'd be glad to discuss how I can help you build one. Feel free to reach out anytime at [email protected]! | ||
|
||
[![Sponsor Next JS Boilerplate](https://cdn.buymeacoffee.com/buttons/default-red.png)](https://github.com/sponsors/ixartz) |
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
Binary file added
BIN
+83.8 KB
public/assets/images/nextjs-boilerplate-saas-user-dashboard-sidebar-dark-mode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+91.2 KB
public/assets/images/nextjs-boilerplate-saas-user-dashboard-sidebar.png
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
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,31 @@ | ||
'use client'; | ||
|
||
import * as SeparatorPrimitive from '@radix-ui/react-separator'; | ||
import * as React from 'react'; | ||
|
||
import { cn } from '@/utils/Helpers'; | ||
|
||
const Separator = React.forwardRef< | ||
React.ElementRef<typeof SeparatorPrimitive.Root>, | ||
React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> | ||
>( | ||
( | ||
{ className, orientation = 'horizontal', decorative = true, ...props }, | ||
ref, | ||
) => ( | ||
<SeparatorPrimitive.Root | ||
ref={ref} | ||
decorative={decorative} | ||
orientation={orientation} | ||
className={cn( | ||
'shrink-0 bg-border', | ||
orientation === 'horizontal' ? 'h-[1px] w-full' : 'h-full w-[1px]', | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
), | ||
); | ||
Separator.displayName = SeparatorPrimitive.Root.displayName; | ||
|
||
export { Separator }; |
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,84 @@ | ||
/* eslint-disable react-dom/no-unsafe-target-blank */ | ||
import Image from 'next/image'; | ||
|
||
import { LogoCloud } from '@/features/landing/LogoCloud'; | ||
|
||
export const SponsorLogos = () => ( | ||
<LogoCloud text="Sponsored by"> | ||
<a | ||
href="https://clerk.com?utm_source=github&utm_medium=sponsorship&utm_campaign=nextjs-boilerplate" | ||
target="_blank" | ||
rel="noopener" | ||
> | ||
<Image | ||
src="/assets/images/clerk-logo-dark.png" | ||
alt="Clerk logo dark" | ||
className="dark:hidden" | ||
width="128" | ||
height="37" | ||
/> | ||
<Image | ||
src="/assets/images/clerk-logo-white.png" | ||
alt="Clerk logo light" | ||
className="hidden dark:block" | ||
width="128" | ||
height="37" | ||
/> | ||
</a> | ||
|
||
<a | ||
href="https://l.crowdin.com/next-js" | ||
target="_blank" | ||
rel="noopener" | ||
> | ||
<Image | ||
src="/assets/images/crowdin-dark.png" | ||
alt="Crowdin logo dark" | ||
className="dark:hidden" | ||
width="128" | ||
height="26" | ||
/> | ||
<Image | ||
src="/assets/images/crowdin-white.png" | ||
alt="Crowdin logo light" | ||
className="hidden dark:block" | ||
width="128" | ||
height="26" | ||
/> | ||
</a> | ||
|
||
<a | ||
href="https://sentry.io/for/nextjs/?utm_source=github&utm_medium=paid-community&utm_campaign=general-fy25q1-nextjs&utm_content=github-banner-nextjsboilerplate-logo" | ||
target="_blank" | ||
rel="noopener" | ||
> | ||
<Image | ||
src="/assets/images/sentry-dark.png" | ||
alt="Sentry logo dark" | ||
className="dark:hidden" | ||
width="128" | ||
height="38" | ||
/> | ||
<Image | ||
src="/assets/images/sentry-white.png" | ||
alt="Sentry logo light" | ||
className="hidden dark:block" | ||
width="128" | ||
height="38" | ||
/> | ||
</a> | ||
|
||
<a | ||
href="https://nextjs-boilerplate.com/pro-saas-starter-kit" | ||
target="_blank" | ||
rel="noopener" | ||
> | ||
<Image | ||
src="/assets/images/nextjs-boilerplate-saas.png" | ||
alt="Nextjs SaaS Boilerplate" | ||
width="128" | ||
height="30" | ||
/> | ||
</a> | ||
</LogoCloud> | ||
); |
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
Oops, something went wrong.