generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
1 parent
5bd834e
commit 4c30a11
Showing
5 changed files
with
25,809 additions
and
80 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import {FlareIcon, IgnitionIcon} from '@flareapp/ignition-ui'; | ||
import React from 'react'; | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer | ||
className="mx-auto mb-20 px-6 lg:px-10 max-w-4xl lg:max-w-[90rem] | flex flex-row justify-between gap-4 ~text-gray-500"> | ||
<ul className="grid grid-flow-col gap-5 justify-center items-center uppercase text-xs font-medium"> | ||
<li> | ||
<IgnitionIcon/> | ||
</li> | ||
<li>·</li> | ||
<li> | ||
<a href="https://github.com/spatie/laravel-ignition" target="_blank" | ||
className="hover:text-red-500">Source</a> | ||
</li> | ||
<li>·</li> | ||
<li> | ||
<a href="https://flareapp.io/docs/ignition/introducing-ignition/overview" target="_blank" | ||
className="hover:text-red-500">Docs</a> | ||
</li> | ||
<li>·</li> | ||
<li> | ||
<a href="https://laravel.com" target="_blank" className="hover:text-red-500">Laravel</a> | ||
</li> | ||
</ul> | ||
<div className="text-sm flex items-center"> | ||
<p> | ||
Ignition is built by | ||
<a | ||
href="https://flareapp.io/?utm_campaign=ignition&utm_source=ignition" | ||
target="_blank" | ||
className="font-medium hover:text-purple-500" | ||
> | ||
<FlareIcon className={"inline-block -mt-1 ml-1 mr-px"}/> | ||
Flare | ||
</a>, | ||
the Laravel error reporting service. | ||
</p> | ||
</div> | ||
</footer> | ||
) | ||
} |