-
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.
Draft of about page, added balance to profile
- Loading branch information
Showing
4 changed files
with
112 additions
and
1 deletion.
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,89 @@ | ||
"use client"; | ||
|
||
import Image from "next/image"; | ||
import { NFTMetaData } from "~~/utils/simpleNFT/nftsMetadata"; | ||
|
||
export interface Post extends Partial<NFTMetaData> { | ||
postId?: number; | ||
uri: string; | ||
user: string; | ||
date?: string; | ||
} | ||
|
||
export const About = () => { | ||
return ( | ||
<div className="flex flex-col items-center justify-center"> | ||
<div className="hero bg-base-200 "> | ||
<div className="hero-content flex-col lg:flex-row-reverse lg:p-14"> | ||
<Image | ||
src="./placeholder.png" | ||
alt="Animation clicking a like button and increasing USDC balance" | ||
className="max-w-sm rounded-lg shadow-2xl" | ||
/> | ||
<div> | ||
<h1 className="text-5xl font-bold">What if your social interactions earned you money? 💸</h1> | ||
<p className="py-6"> | ||
Imagine a platform where every like, comment, or share sends USDC directly to your wallet. | ||
<br /> | ||
With PunkSociety, we're building a social protocol that transforms how you interact, earn, and | ||
connect! | ||
</p> | ||
<button className="btn btn-primary bg-green-600 border-0 hover:bg-green-700">Create a profile!</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="hero bg-base-300 "> | ||
<div className="hero-content flex flex-col"> | ||
<div className="card bg-base-100 shadow-xl"> | ||
<figure className="px-10 pt-10"> | ||
<Image | ||
src="https://img.daisyui.com/images/stock/photo-1606107557195-0e29a4b5b4aa.webp" | ||
alt="Shoes" | ||
className="rounded-xl" | ||
/> | ||
</figure> | ||
<div className="card-body items-center text-center"> | ||
<h2 className="card-title">Shoes!</h2> | ||
<p>If a dog chews shoes whose shoes does he choose?</p> | ||
<div className="card-actions"> | ||
<button className="btn btn-primary">Buy Now</button> | ||
</div> | ||
</div> | ||
</div> | ||
{/* <div className="card bg-base-100 w-96 shadow-xl"> | ||
<figure className="px-10 pt-10"> | ||
<img | ||
src="https://img.daisyui.com/images/stock/photo-1606107557195-0e29a4b5b4aa.webp" | ||
alt="Shoes" | ||
className="rounded-xl" | ||
/> | ||
</figure> | ||
<div className="card-body items-center text-center"> | ||
<h2 className="card-title">Shoes!</h2> | ||
<p>If a dog chews shoes whose shoes does he choose?</p> | ||
<div className="card-actions"> | ||
<button className="btn btn-primary">Buy Now</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="card bg-base-100 w-96 shadow-xl"> | ||
<figure className="px-10 pt-10"> | ||
<img | ||
src="https://img.daisyui.com/images/stock/photo-1606107557195-0e29a4b5b4aa.webp" | ||
alt="Shoes" | ||
className="rounded-xl" | ||
/> | ||
</figure> | ||
<div className="card-body items-center text-center"> | ||
<h2 className="card-title">Shoes!</h2> | ||
<p>If a dog chews shoes whose shoes does he choose?</p> | ||
<div className="card-actions"> | ||
<button className="btn btn-primary">Buy Now</button> | ||
</div> | ||
</div> | ||
</div> */} | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; |
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,18 @@ | ||
import { About } from "./About"; | ||
import type { NextPage } from "next"; | ||
import { getMetadata } from "~~/utils/scaffold-eth/getMetadata"; | ||
|
||
export const metadata = getMetadata({ | ||
title: "About", | ||
description: "Built with 🏗 Scaffold-ETH 2", | ||
}); | ||
|
||
const AboutPage: NextPage = () => { | ||
return ( | ||
<> | ||
<About /> | ||
</> | ||
); | ||
}; | ||
|
||
export default AboutPage; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.