enzostvs HF staff commited on
Commit
2d7ec06
1 Parent(s): 80222b4

add cta to see full examples

Browse files
app/_components/gallery/index.tsx CHANGED
@@ -1,4 +1,5 @@
1
  import Image from "next/image";
 
2
 
3
  export const Gallery = ({ logos }: { logos: Array<number> }) => {
4
  return (
@@ -22,6 +23,14 @@ export const Gallery = ({ logos }: { logos: Array<number> }) => {
22
  />
23
  ))}
24
  </div>
 
 
 
 
 
 
 
 
25
  </section>
26
  );
27
  };
 
1
  import Image from "next/image";
2
+ import Link from "next/link";
3
 
4
  export const Gallery = ({ logos }: { logos: Array<number> }) => {
5
  return (
 
23
  />
24
  ))}
25
  </div>
26
+ <div className="mt-12 flex items-center justify-center">
27
+ <Link
28
+ href="/gallery"
29
+ className="rounded-full text-zinc-300 bg-zinc-900 font-medium text-base px-6 py-3 hover:bg-opacity-80 transition-all duration-150 text-center max-lg:w-full"
30
+ >
31
+ View all examples
32
+ </Link>
33
+ </div>
34
  </section>
35
  );
36
  };
components/_navigation/index.tsx CHANGED
@@ -7,7 +7,10 @@ import Link from "next/link";
7
  export const Navigation = () => {
8
  return (
9
  <div className="rounded-full bg-zinc-950 border border-white/10 px-6 py-2.5 lg:pr-7 lg:py-4 flex items-center justify-center lg:justify-between max-w-max lg:max-w-xl lg:w-full mx-auto shadow-md relative">
10
- <div className="flex items-center justify-center gap-3 relative">
 
 
 
11
  <div className="relative">
12
  <Image src={Logo} alt="logo" className="size-6" />
13
  <div className="absolute left-0 -translate-x-[calc(100%+12px)] top-5 text-white flex justify-end gap-1 -rotate-6">
@@ -20,7 +23,7 @@ export const Navigation = () => {
20
  </div>
21
  </div>
22
  <p className="font-semibold text-lg text-white">LogoAI</p>
23
- </div>
24
  <ul className="hidden lg:flex items-center justify-right gap-3">
25
  <li className="text-zinc-400 hover:text-white">
26
  <Link href="/gallery">Gallery</Link>
 
7
  export const Navigation = () => {
8
  return (
9
  <div className="rounded-full bg-zinc-950 border border-white/10 px-6 py-2.5 lg:pr-7 lg:py-4 flex items-center justify-center lg:justify-between max-w-max lg:max-w-xl lg:w-full mx-auto shadow-md relative">
10
+ <Link
11
+ href="/"
12
+ className="flex items-center justify-center gap-3 relative"
13
+ >
14
  <div className="relative">
15
  <Image src={Logo} alt="logo" className="size-6" />
16
  <div className="absolute left-0 -translate-x-[calc(100%+12px)] top-5 text-white flex justify-end gap-1 -rotate-6">
 
23
  </div>
24
  </div>
25
  <p className="font-semibold text-lg text-white">LogoAI</p>
26
+ </Link>
27
  <ul className="hidden lg:flex items-center justify-right gap-3">
28
  <li className="text-zinc-400 hover:text-white">
29
  <Link href="/gallery">Gallery</Link>