-
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.
Added banner to inform project is for demo only
- Loading branch information
1 parent
a3610f1
commit 3d78975
Showing
5 changed files
with
43 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Link from 'next/link'; | ||
import {FC} from 'react'; | ||
|
||
export const DemoHeadline: FC = () => { | ||
return ( | ||
<div className="w-full py-2 bg-violet-900 text-violet-300 text-sm text-center"> | ||
<p className="text-center"> | ||
This project is for demonstration purposes only. For more information, | ||
check{' '} | ||
<Link | ||
href="https://www.pkural.ca/projects/#plamatio-e-commerce" | ||
className="underline hover:font-[500]"> | ||
here | ||
</Link> | ||
. | ||
</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default DemoHeadline; |
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