Skip to content

Commit

Permalink
rewamp
Browse files Browse the repository at this point in the history
  • Loading branch information
gaureshpai committed Dec 11, 2024
1 parent e0972ac commit 8bfe52c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
REPLICATE_API_TOKEN =
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import './globals.css'
const inter = Inter({ subsets: ['latin'] })

export const metadata: Metadata = {
title: 'ggreplicater',
description: 'Replicate AI predictor generated by Gauresh',
title: 'ai replicater',
description: 'Replicate AI Image generator',
}

export default function RootLayout({
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default function Home() {
return (
<div className="flex flex-col min-h-screen">
<Head>
<title className="title-link">The GGReplicater</title>
<title className="title-link">The AI Replicater</title>
</Head>

<Navbar />
Expand Down
6 changes: 4 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
"use client";
import Link from 'next/link';
import './Footer.css'
import './Footer.css';

export default function Footer() {
return (
<footer className="footer-container">
<div className="footer-box">
<p>&copy; {new Date().getFullYear()} <Link href="https://gauresh.vercel.app" className='hehe'>Gauresh G Pai</Link>. All rights reserved.</p>
{/* <p>&copy; {new Date().getFullYear()} <Link href="https://gauresh.vercel.app" className='hehe'>Gauresh G Pai</Link>. All rights reserved.</p> */}
<p>Team Members: Shrepathi, Yashas, Saikumar, Adon</p>
</div>
</footer>
);
Expand Down
8 changes: 4 additions & 4 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ export default function Navbar() {
<Link href="/" className="titleb">
<Image
src="/logo.png"
alt="GGReplicater Logo"
alt="AIReplicater Logo"
width={32}
height={32}
className="mr-2"
/>
GGReplicater
AI Replicater
</Link>
</div>

<div className="button-container">
{/* <div className="button-container">
<Link href="https://gauresh.vercel.app" target="_blank" rel="noopener noreferrer" className="buttons">
Website
</Link>
Expand All @@ -29,7 +29,7 @@ export default function Navbar() {
<Link href="https://github.com/gaureshpai" target="_blank" rel="noopener noreferrer" className="buttons">
GitHub
</Link>
</div>
</div> */}
</div>
</nav>
);
Expand Down

0 comments on commit 8bfe52c

Please sign in to comment.