Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed icons to footer, made cta but i lowkey just broke the fronten… #13

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 78 additions & 45 deletions landing-page/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,22 @@ export default function Home() {
<meta property="og:type" content="website" />
<meta property="og:url" content="https://curate.fun" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CURATE.FUN - Curate News on Socials" />
<meta name="twitter:description" content="Curate news directly on socials and turn feeds into regular content." />
<meta property="og:image" content="https://curate.fun/curatedotfunbannernew.png" />
<meta property="twitter:image" content="https://curate.fun/curatedotfunbannernew.png" />
<meta
name="twitter:title"
content="CURATE.FUN - Curate News on Socials"
/>
<meta
name="twitter:description"
content="Curate news directly on socials and turn feeds into regular content."
/>
<meta
property="og:image"
content="https://curate.fun/curatedotfunbannernew.png"
/>
<meta
property="twitter:image"
content="https://curate.fun/curatedotfunbannernew.png"
/>
<meta name="theme-color" content="#ffffff" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
Expand Down Expand Up @@ -229,38 +241,13 @@ export default function Home() {
</div>
))} */}
</div>
<Link
href="https://twitter.com/curatedotfun"
target="_blank"
rel="noopener noreferrer"
className="text-xl hover:text-blue-500"
>
<FaTwitter />
</Link>
<Link
href="https://docs.curate.fun"
target="_blank"
rel="noopener noreferrer"
className="text-xl hover:text-blue-500"
>
<FaBook />
</Link>
<Link
href="https://github.com/potlock/curatedotfun"
target="_blank"
rel="noopener noreferrer"
className="text-xl hover:text-blue-500"
>
<FaGithub />
</Link>
<Link
href="https://t.me/+UM70lvMnofk3YTVh"
target="_blank"
rel="noopener noreferrer"
className="text-xl hover:text-blue-500"

<div
id="cta-button"
className="text-xl bg-gray-400 text-white px-4 py-2 rounded cursor-not-allowed font-lodrina"
>
<FaTelegram />
</Link>
DASHBOARD
</div>
</nav>
</header>

Expand Down Expand Up @@ -388,7 +375,17 @@ export default function Home() {
<p>NEAR Social</p>
</div>
</div>
<p className="mt-4 italic">Powered by <a className="text-blue-500 hover:text-gray-800" href="https://crosspost.everything.dev/" target="_blank" rel="noopener noreferrer">opencrosspost.com</a></p>
<p className="mt-4 italic">
Powered by{" "}
<a
className="text-blue-500 hover:text-gray-800"
href="https://crosspost.everything.dev/"
target="_blank"
rel="noopener noreferrer"
>
opencrosspost.com
</a>
</p>
</section>

<section className="mb-8 sm:mb-12 w-full">
Expand Down Expand Up @@ -541,15 +538,51 @@ export default function Home() {
</div>
</main>

<footer className="fixed bottom-0 w-full py-2 sm:py-4 text-center bg-white/80 backdrop-blur text-sm sm:text-base border-t-4 border-black">
<Link
href="https://potlock.org"
className="hover:text-gray-800"
target="_blank"
rel="noopener noreferrer"
>
Curated with ❤️ by 🫕 POTLOCK
</Link>
<footer className="fixed bottom-0 w-full py-2 sm:py-4 bg-white/80 backdrop-blur border-t-4 border-black flex flex-col sm:flex-row justify-between items-center px-4">
<div className="flex space-x-4">
<Link
href="https://twitter.com/curatedotfun"
target="_blank"
rel="noopener noreferrer"
className="text-xl hover:text-blue-500"
>
<FaTwitter />
</Link>
<Link
href="https://docs.curate.fun"
target="_blank"
rel="noopener noreferrer"
className="text-xl hover:text-blue-500"
>
<FaBook />
</Link>
<Link
href="https://github.com/potlock/curatedotfun"
target="_blank"
rel="noopener noreferrer"
className="text-xl hover:text-blue-500"
>
<FaGithub />
</Link>
<Link
href="https://t.me/+UM70lvMnofk3YTVh"
target="_blank"
rel="noopener noreferrer"
className="text-xl hover:text-blue-500"
>
<FaTelegram />
</Link>
</div>
<div className="text-sm sm:text-base text-right mt-2 sm:mt-0">
<Link
href="https://potlock.org"
className="hover:text-gray-800"
target="_blank"
rel="noopener noreferrer"
>
Curated with ❤️ by 🫕 POTLOCK
</Link>
</div>
</footer>
</div>
);
Expand Down
4 changes: 3 additions & 1 deletion landing-page/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
Link, h1, h2, h3, h4, h5, h6 {
font-family: 'Londrina Solid', sans-serif;
}

.cta-button {
font-family: 'Londrina Solid', sans-serif;
}
h1 {
font-size: 4rem;
font-weight: 900;
Expand Down
Loading