-
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
22 changed files
with
107 additions
and
501 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modulesnode_modules/ | ||
node_modules/ | ||
.next/ |
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import { Metadata } from "next"; | ||
import Image from "next/image"; | ||
|
||
export const metadata: Metadata = { | ||
title: "Error Page - Solid SaaS Boilerplate", | ||
description: "This is Error page for Solid Pro", | ||
// other metadata | ||
}; | ||
|
||
const ErroPage = () => { | ||
return ( | ||
<section className="overflow-hidden pb-25 pt-45 lg:pb-32.5 lg:pt-50 xl:pb-37.5 xl:pt-55"> | ||
<div className="animate_top mx-auto max-w-[518px] text-center"> | ||
<Image | ||
src="/images/shape/404.svg" | ||
alt="404" | ||
className="mx-auto mb-7.5" | ||
width={400} | ||
height={400} | ||
/> | ||
|
||
<h2 className="mb-5 text-2xl font-semibold text-black dark:text-white md:text-4xl"> | ||
This Page Does Not Exist | ||
</h2> | ||
<p className="mb-7.5"> | ||
The page you were looking for appears to have been moved, deleted or | ||
does not exist. | ||
</p> | ||
|
||
<a | ||
href="/" | ||
className="inline-flex items-center gap-2.5 rounded-full bg-black px-6 py-3 font-medium text-white duration-300 ease-in-out hover:bg-blackho dark:bg-btndark dark:hover:bg-blackho" | ||
> | ||
Return to Home | ||
<svg | ||
className="fill-white" | ||
width="14" | ||
height="14" | ||
viewBox="0 0 14 14" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M10.4767 6.16664L6.00668 1.69664L7.18501 0.518311L13.6667 6.99998L7.18501 13.4816L6.00668 12.3033L10.4767 7.83331H0.333344V6.16664H10.4767Z" | ||
fill="" | ||
/> | ||
</svg> | ||
</a> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default ErroPage; |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.