generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 41c51304195ba6a9af46659899024eb6eae9987e Author: Alex Vanderbist <[email protected]> Date: Tue Sep 19 16:55:16 2023 +0200 Tweak stacktrace background gradient commit 0be058c410d1b30bae467c83538d1c467865a531 Author: Alex Vanderbist <[email protected]> Date: Mon Sep 18 17:51:15 2023 +0200 Update shared errors docs link commit 32aace41de7accb1bf60f9b58b3302ae0a6f8d53 Author: Alex Vanderbist <[email protected]> Date: Mon Sep 18 14:54:15 2023 +0200 Add footer commit 066e9a220b3fd65f6692081837baab7b576b520f Author: Alex Vanderbist <[email protected]> Date: Fri Sep 15 20:30:18 2023 +0200 Open docs and links in new tabs commit 3669b45ba945a2c21dfacfa470ef98f57fb954c0 Author: Alex Vanderbist <[email protected]> Date: Fri Sep 15 19:19:24 2023 +0200 Use container queries commit e761db2c02b49de67cc1df22c1bea4e68215ba11 Author: Alex Vanderbist <[email protected]> Date: Fri Sep 15 19:12:18 2023 +0200 Update icon commit 315a160104632264ef6147510b4fade04cb0e271 Author: Alex Vanderbist <[email protected]> Date: Fri Sep 15 15:04:38 2023 +0200 Fix type error when missing editor options commit b8d35babdbda57f8a645e10cb3f3e31ee7ba4e42 Author: Alex Vanderbist <[email protected]> Date: Fri Sep 15 15:04:27 2023 +0200 Remove obsolete TailwindCSS plugins commit 8604821f86d364f75074979f6373af1bc5880128 Author: Alex Vanderbist <[email protected]> Date: Fri Sep 15 15:04:12 2023 +0200 Fix spacing on important navbar items commit 50c100245c5a1c8cd4d800f712703b9a467cf927 Author: Alex Vanderbist <[email protected]> Date: Fri Sep 15 15:03:51 2023 +0200 Move share icon right commit 042293257d8829bd986dad7a7007f2d052a47eb1 Author: Alex Vanderbist <[email protected]> Date: Thu Aug 10 16:08:53 2023 +0200 Test navbar links commit fad23db7907a7d22af4f7a51e8b66617fed5c238 Author: Alex Vanderbist <[email protected]> Date: Thu Aug 10 16:07:45 2023 +0200 Add footer
- Loading branch information
1 parent
d92b9a0
commit 3e6740c
Showing
12 changed files
with
25,746 additions
and
19 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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,70 @@ | ||
import { FlareIcon } from '@flareapp/ignition-ui'; | ||
import React from 'react'; | ||
|
||
export default function FlareFooter() { | ||
return ( | ||
<footer> | ||
<div | ||
className="@container relative isolate overflow-hidden bg-gray-900 py-8 sm:py-20 shadow-2xl rounded-lg px-6 sm:px-24 | flex justify-center"> | ||
<div className="@4xl:grid @4xl:grid-cols-[max-content,12rem] gap-x-16 xl:gap-x-24"> | ||
<div> | ||
<h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl"> | ||
<span className="bg-gradient-to-br to-[#ab90e5] from-[#d4c0ff] bg-clip-text text-transparent">Flare</span> is your error page for production. | ||
</h2> | ||
<p className="mt-6 max-w-xl text-lg leading-8 text-gray-300"> | ||
Start tracking errors in your application within minutes with Flare.<br/> | ||
Flare provides exceptional error monitoring designed specifically for Laravel applications. | ||
</p> | ||
<div className="mt-10 flex flex-wrap items-center justify-start gap-x-6"> | ||
<a | ||
href="https://flareapp.io/?utm_campaign=ignition&utm_source=ignition" | ||
target="_blank" | ||
className="rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm hover:bg-gray-100 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white" | ||
> | ||
Learn more <span aria-hidden="true">→</span> | ||
</a> | ||
<span className="text-sm font-semibold leading-6 py-2 text-white"> | ||
Use code <code>IGNITION</code> for 50% off your first month. | ||
</span> | ||
</div> | ||
</div> | ||
<div className="hidden @4xl:block relative"> | ||
<FlareIcon className="ml-0 absolute left-0 -top-6 h-[170%] w-auto opacity-90" /> | ||
<FlareIcon className="ml-0 absolute left-0 -top-6 h-[170%] w-auto opacity-50 blur-[10px]" /> | ||
</div> | ||
</div> | ||
|
||
<svg | ||
viewBox="0 0 1024 1024" | ||
className="absolute left-0 -top-32 -z-10 h-[75rem] w-[75rem] -translate-x-1/2 -translate-y-1/2 [mask-image:radial-gradient(closest-side,white,transparent)]" | ||
aria-hidden="true" | ||
> | ||
<circle cx={512} cy={512} r={512} | ||
fill="url(#purple-grad)" | ||
fillOpacity="0.6"/> | ||
<defs> | ||
<radialGradient id="purple-grad"> | ||
<stop stopColor="#906ED8"/> | ||
<stop offset={1} stopColor="#906ED8"/> | ||
</radialGradient> | ||
</defs> | ||
</svg> | ||
<svg | ||
viewBox="0 0 1024 1024" | ||
className="absolute right-0 -bottom-32 -z-10 h-[75rem] w-[75rem] translate-x-1/2 translate-y-1/2 [mask-image:radial-gradient(closest-side,white,transparent)]" | ||
aria-hidden="true" | ||
> | ||
<circle cx={512} cy={512} r={512} | ||
fill="url(#green-grad)" | ||
fillOpacity="0.6"/> | ||
<defs> | ||
<radialGradient id="green-grad"> | ||
<stop stopColor="#41D591"/> | ||
<stop offset={1} stopColor="#41D591"/> | ||
</radialGradient> | ||
</defs> | ||
</svg> | ||
</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
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