Skip to content

Commit 496fb1e

Browse files
committed
change readme and update screenshots
1 parent 120ef24 commit 496fb1e

File tree

12 files changed

+11
-12
lines changed

12 files changed

+11
-12
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# nextjs-golang-crud-app
2-
🚨Simple full-stack project with nextjs and go-lang
2+
🚨Simple full-stack project with nextjs and golang
33

44
The purpose of creating this project is to learn for junior programmers how to implement a full stack application and create the best structure for the application.
5-
![Screenshot 2023-11-02 024037](https://github.com/pooulad/nextjs-golang-crud-app/assets/86445458/e71ba4ef-033d-4419-8b49-0b2f73eb4bc3)
5+
![HomePage](https://github.com/pooulad/next-golang-crud-app/blob/main/images/home.png)
66

77
## Technology list in this project
88

@@ -64,8 +64,9 @@ This section tracks the progress of implemented features in the File Trove CLI t
6464

6565
## Screenshots
6666

67-
![Screenshot 2023-11-02 023836](https://github.com/pooulad/nextjs-golang-crud-app/assets/86445458/92e31a27-57c3-41c6-a569-3b92d09642d2)
68-
![Screenshot 2023-11-02 023905](https://github.com/pooulad/nextjs-golang-crud-app/assets/86445458/895c8c7c-0d86-474d-a45c-48f5e8c0cf27)
67+
![App SignUp Form](https://github.com/pooulad/next-golang-crud-app/blob/main/images/sign-up.png)
68+
69+
![App SignIn Form](https://github.com/pooulad/next-golang-crud-app/blob/main/images/sign-in.png)
6970

7071

7172

frontend/app/favicon.ico

585 KB
Binary file not shown.

frontend/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ const geistMono = localFont({
1616
});
1717

1818
export const metadata: Metadata = {
19-
title: "Create Next App",
20-
description: "Generated by create next app",
19+
title: "next-golang-crud-app",
20+
description: "Created by pooulad",
2121
};
2222

2323
interface RootLayoutProps {

frontend/app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default async function Root() {
6060
An example app built using Next.js 15 server components.
6161
</h1>
6262
<p className="max-w-[42rem] leading-normal text-muted-foreground sm:text-xl sm:leading-8">
63-
I&apos;m building a crud app with Next.js 13 and open sourcing
63+
I&apos;m building a crud app with Next.js 15 and open sourcing
6464
everything. Follow along as we figure this out together.
6565
</p>
6666
<div className="space-x-4">
@@ -96,7 +96,7 @@ export default async function Root() {
9696
<path d="M11.572 0c-.176 0-.31.001-.358.007a19.76 19.76 0 0 1-.364.033C7.443.346 4.25 2.185 2.228 5.012a11.875 11.875 0 0 0-2.119 5.243c-.096.659-.108.854-.108 1.747s.012 1.089.108 1.748c.652 4.506 3.86 8.292 8.209 9.695.779.25 1.6.422 2.534.525.363.04 1.935.04 2.299 0 1.611-.178 2.977-.577 4.323-1.264.207-.106.247-.134.219-.158-.02-.013-.9-1.193-1.955-2.62l-1.919-2.592-2.404-3.558a338.739 338.739 0 0 0-2.422-3.556c-.009-.002-.018 1.579-.023 3.51-.007 3.38-.01 3.515-.052 3.595a.426.426 0 0 1-.206.214c-.075.037-.14.044-.495.044H7.81l-.108-.068a.438.438 0 0 1-.157-.171l-.05-.106.006-4.703.007-4.705.072-.092a.645.645 0 0 1 .174-.143c.096-.047.134-.051.54-.051.478 0 .558.018.682.154.035.038 1.337 1.999 2.895 4.361a10760.433 10760.433 0 0 0 4.735 7.17l1.9 2.879.096-.063a12.317 12.317 0 0 0 2.466-2.163 11.944 11.944 0 0 0 2.824-6.134c.096-.66.108-.854.108-1.748 0-.893-.012-1.088-.108-1.747-.652-4.506-3.859-8.292-8.208-9.695a12.597 12.597 0 0 0-2.499-.523A33.119 33.119 0 0 0 11.573 0zm4.069 7.217c.347 0 .408.005.486.047a.473.473 0 0 1 .237.277c.018.06.023 1.365.018 4.304l-.006 4.218-.744-1.14-.746-1.14v-3.066c0-1.982.01-3.097.023-3.15a.478.478 0 0 1 .233-.296c.096-.05.13-.054.5-.054z" />
9797
</svg>
9898
<div className="space-y-2">
99-
<h3 className="font-bold">Next.js 13</h3>
99+
<h3 className="font-bold">Next.js 15</h3>
100100
<p className="text-sm text-muted-foreground">
101101
App dir, Routing, Layouts, Loading UI and API routes.
102102
</p>

frontend/components/signin-form/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function SignInForm() {
3636

3737
};
3838
return (
39-
<main className={`flex min-h-screen flex-col items-center p-4`}>
39+
<main className={`flex min-h-screen flex-col items-center p-4 mt-40`}>
4040
{loading ? (
4141
<>
4242
<div role="status">

frontend/components/signup-form/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default function SignUpForm() {
5353
});
5454
};
5555
return (
56-
<main className={`flex min-h-screen flex-col items-center p-4`}>
56+
<main className={`flex min-h-screen flex-col items-center p-4 mt-40`}>
5757
{loading ? (
5858
<>
5959
<div role="status">

frontend/public/logo.png

611 KB
Loading

frontend/public/next.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

frontend/public/vercel.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

images/home.png

501 KB
Loading

0 commit comments

Comments
 (0)