-
Notifications
You must be signed in to change notification settings - Fork 181
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
7 changed files
with
80 additions
and
24 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
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,34 @@ | ||
import { PageGenUrl, ReactShadcnUrl, SearchUrl } from '@/config'; | ||
import Link from 'next/link'; | ||
|
||
export function ProductFooter() { | ||
return ( | ||
<footer className="md:block mx-auto py-10"> | ||
<div className="flex flex-col md:flex-row md:justify-center md:items-center w-full px-4 md:px-0 space-y-2 md:space-y-0 md:space-x-2 text-sm"> | ||
<Link | ||
className="font-semibold text-gray-800 dark:text-gray-300 hover:text-primary dark:hover:text-primary text-left md:text-center w-full md:w-auto" | ||
href={SearchUrl} | ||
target="_blank" | ||
> | ||
Hybrid AI Search | ||
</Link> | ||
<span className="text-gray-300 hidden md:block">|</span> | ||
<Link | ||
className="font-semibold text-gray-800 dark:text-gray-300 hover:text-primary dark:hover:text-primary text-left md:text-center w-full md:w-auto" | ||
href={PageGenUrl} | ||
target="_blank" | ||
> | ||
AI Page Generator | ||
</Link> | ||
<span className="text-gray-300 hidden md:block">|</span> | ||
<Link | ||
className="font-semibold text-gray-800 dark:text-gray-300 hover:text-primary dark:hover:text-primary text-left md:text-center w-full md:w-auto" | ||
data-featurebase-link | ||
href={ReactShadcnUrl} | ||
> | ||
React Shadcn UI Preview | ||
</Link> | ||
</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