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

Fixed the footer and sell process #35

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
1,517 changes: 1,517 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"lint": "next lint"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/node": "20.1.1",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
Expand Down
Binary file added public/blog_Images/GPT-4.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/blog_Images/Midjourney.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/blog_Images/prompt_bundles.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/blog_Images/watermark_editor.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons8-linkedin-50.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons8-twitter-50.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons8-website-50.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 41 additions & 6 deletions src/app/blog/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,46 @@
export const metadata = {
title: "Blog"
}
"use client"



const Blog = () => {

const myBlog = [
{
date: "May 11th, 2023",
title: "Prompt Bundles",
image: "../blog_Images/prompt_bundles.jpeg"
},
{
date: "April 12th, 2023",
title: "Watermark Editor",
image: "../blog_Images/watermark_editor.jpeg"
},
{
date: "March 16th, 2023",
title: "Midjourney VS Prompts & Promptbroker",
image: "../blog_Images/Midjourney.jpeg"
},
{
date: "March 15, 2023",
title: "GPT-4 Prompts & Promptbroker",
image: "../blog_Images/GPT-4.jpeg"
},
]

export default function Blog() {
return (
<div className="">
blog
<div className="blog w-[750px] ml-[315px]">
<h1 className="my-12 text-5xl font-bold">Blog </h1>
<div className="blogcards inline-grid grid-rows-2 grid-cols-2 gap-4">
{myBlog.map((blog, index) => (
<div className="blog-card" key={index}>
<span className="blog-card-date">{blog.date}</span>
<img src={blog.image} alt={blog.title} width={300} height={120} className="rounded-t-md"/>
<p className="blog-card-title">{blog.title}</p>
</div>
))}
</div>
</div>
)
}

export default Blog;
Loading