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

Week 7 #21

Open
wants to merge 1 commit 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
3 changes: 3 additions & 0 deletions nextjs/bandynaranjo-5656/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
35 changes: 35 additions & 0 deletions nextjs/bandynaranjo-5656/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
34 changes: 34 additions & 0 deletions nextjs/bandynaranjo-5656/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
22 changes: 22 additions & 0 deletions nextjs/bandynaranjo-5656/components/Card/Card.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import styles from "./Card.module.scss";
import Image from "@/components/Image";
import Heading from "@/components/Heading";


const Card = ({
breed,
image
}) => {
return (
<>
<div className={styles.dog}>
<Image type='card' src={image} alt={`Image of an ${breed}`}/>
<div>
<Heading color="white" size="sm" align="center">{breed}</Heading>
</div>
</div>
</>
);
};

export default Card;
12 changes: 12 additions & 0 deletions nextjs/bandynaranjo-5656/components/Card/Card.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.dog {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
border: 1px solid white;
padding: 10px;
gap: 10px 0px;
}



1 change: 1 addition & 0 deletions nextjs/bandynaranjo-5656/components/Card/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {default} from "./Card";
18 changes: 18 additions & 0 deletions nextjs/bandynaranjo-5656/components/Heading/Heading.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import styles from "./Heading.module.scss";
import classnames from "classnames/bind";

const cx = classnames.bind(styles);

const Heading = ({ children, color, size, align="left" }) => {
return (
<>
<h4 className={cx('font-bold', {
[`color-${color}`]: color,
[`heading-${size}`]: size,
[`heading-align-${align}`]: align,
})}>{children}</h4>
</>
);
}

export default Heading;
38 changes: 38 additions & 0 deletions nextjs/bandynaranjo-5656/components/Heading/Heading.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.color-white {
color: var(--color-white);
}

.color-black {
color: var(--color-black);
}

.color-dark-grey{
color: var(--color-dark-grey);
}

.heading-sm {
font-size: 23px;
line-height: 29px;
}

.heading-lg {
font-size: 40px;
line-height: 46px;
}

.heading-xl {
font-size: 57px;
line-height: 63px;
}

.font-bold {
font-weight: 700;
}

.heading-align-center {
text-align: center;
}

.heading-align-left {
text-align: left;
}
1 change: 1 addition & 0 deletions nextjs/bandynaranjo-5656/components/Heading/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {default} from "./Heading";
16 changes: 16 additions & 0 deletions nextjs/bandynaranjo-5656/components/Image/Image.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import styles from "./Image.module.scss";
import classnames from "classnames/bind";

const cx = classnames.bind(styles);

const Image = ({ type, src, alt }) => {
return (
<>
<img src={src} alt={alt} className={cx({
[`${type}`]: type,
})}/>
</>
);
}

export default Image;
22 changes: 22 additions & 0 deletions nextjs/bandynaranjo-5656/components/Image/Image.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.avatar{
width: 100%;
height: 100%;
max-width: 300px;
max-height: 300px;
border-radius: 50px;
}

.icon{
height: 45px;
width: 45px;
border-radius: 5px;
}

.card{
object-fit: cover;
height: auto;
aspect-ratio: 1/1;
width: 300px;
border-radius: 10%;

}
1 change: 1 addition & 0 deletions nextjs/bandynaranjo-5656/components/Image/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {default} from "./Image";
7 changes: 7 additions & 0 deletions nextjs/bandynaranjo-5656/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./*"]
}
}
}
4 changes: 4 additions & 0 deletions nextjs/bandynaranjo-5656/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
Loading