Skip to content

Commit 7b3026a

Browse files
up
1 parent 4009a5e commit 7b3026a

File tree

13 files changed

+5012
-2020
lines changed

13 files changed

+5012
-2020
lines changed

package-lock.json

Lines changed: 4944 additions & 1955 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,16 @@
2020
"@types/react": "^19.0.8",
2121
"@types/react-dom": "^19.0.3",
2222
"@vitejs/plugin-react": "^4.3.4",
23+
"autoprefixer": "^10.4.20",
2324
"eslint": "^9.19.0",
2425
"eslint-plugin-react": "^7.37.4",
2526
"eslint-plugin-react-hooks": "^5.0.0",
2627
"eslint-plugin-react-refresh": "^0.4.18",
2728
"globals": "^15.14.0",
29+
"postcss": "^8.5.2",
30+
"postcss-flexbugs-fixes": "^5.0.2",
31+
"postcss-preset-env": "^10.1.4",
32+
"tailwindcss": "^3.4.17",
2833
"vite": "^6.1.0"
2934
}
3035
}

postcss.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
12
export default {
23
plugins: {
34
tailwindcss: {},
45
autoprefixer: {},
56
},
6-
}
7+
};
8+

src/components/About.jsx

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
import React from "react"
2-
import img from "../assets/img/about.png"
3-
import Button from "../layouts/Button";
1+
import React from "react";
2+
import img from "../assets/img/about.png";
3+
import Button from "./layouts/Button";
44

5-
6-
const About =()=>{
7-
return (
8-
9-
<div className="min-h-screen flex flex-col lg:flex-row justify-center items-center lg:px-32 px-5">
5+
const About = () => {
6+
return (
7+
<div className="min-h-screen flex flex-col lg:flex-row justify-center items-center lg:px-32 px-5">
108
<img src={img} alt="img" />
119

1210
<div className=" space-y-4 lg:pt-[-10%] ">
@@ -15,25 +13,25 @@ const About =()=>{
1513
</h1>
1614

1715
<div className=" space-y-4 lg:pt-6 ">
18-
<p>
19-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi
20-
architecto quisquam delectus minima perferendis nulla quia nisi
21-
laborum, exercitationem cum quo accusantium, impedit sed. Dicta, quo
22-
molestias omnis reprehenderit quae animi? Explicabo quasi accusamus
23-
laboriosam temporibus delectus, aut a? Quasi?
24-
</p>
25-
<p>
26-
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Commodi,
27-
suscipit reiciendis accusamus recusandae eum aspernatur pariatur odit
28-
veritatis facere. Magnam!
29-
</p>
16+
<p>
17+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi
18+
architecto quisquam delectus minima perferendis nulla quia nisi
19+
laborum, exercitationem cum quo accusantium, impedit sed. Dicta, quo
20+
molestias omnis reprehenderit quae animi? Explicabo quasi accusamus
21+
laboriosam temporibus delectus, aut a? Quasi?
22+
</p>
23+
<p>
24+
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Commodi,
25+
suscipit reiciendis accusamus recusandae eum aspernatur pariatur
26+
odit veritatis facere. Magnam!
27+
</p>
3028
</div>
31-
<div className="space-y-4 lg:pt-5" >
29+
<div className="space-y-4 lg:pt-5">
3230
<Button title="Leia Mais" />
3331
</div>
3432
</div>
3533
</div>
36-
)
37-
}
34+
);
35+
};
3836

39-
export default About;
37+
export default About;

src/components/Dishes.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import img3 from "../assets/img/img3.jpg";
55
import img4 from "../assets/img/img4.jpg";
66
import img5 from "../assets/img/img5.jpg";
77
import img6 from "../assets/img/img6.jpg";
8-
import DishesCard from "../layouts/DishesCard";
8+
import DishesCard from "./layouts/DishesCard";
99

1010
const Dishes = () => {
1111
return (
@@ -26,4 +26,4 @@ const Dishes = () => {
2626
);
2727
};
2828

29-
export default Dishes;
29+
export default Dishes;

src/components/Home.jsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
import React from "react";
2-
import Button from "../layouts/Button";
2+
import Button from "./layouts/Button";
33

44
const Home = () => {
55
return (
66
<div className=" min-h-screen flex flex-row justify-between items-center lg:px-32 px-5 bg-[url('./assets/img/hero.jpg')] bg-cover bg-no-repeat ">
77
<div className=" w-full lg:w-2/3 space-y-5">
88
<h1 className=" text-backgroundColor font-semibold text-6xl">
9-
Eleve o Seu Lado Gourmet com Cada Mordida.
9+
Eleve o Seu Lado Gourmet com Cada Mordida.
1010
</h1>
1111
<p className=" text-backgroundColor">
1212
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quis et qui,
1313
maxime assumenda repellat corrupti officia dolorum delectus labore
1414
deleniti?
1515
</p>
1616
<div className="lg:pl-44 text-xl font-light">
17-
{/* Button */}
18-
<a
19-
href="https://api.whatsapp.com/send/?phone=18981142927&text=Gostaria%20de%20fazer%20um%20pedido"
20-
target="_blank"
21-
>
22-
<Button title="Peça Agora" />
23-
</a>
17+
{/* Button */}
18+
<a
19+
href="https://api.whatsapp.com/send/?phone=18981142927&text=Gostaria%20de%20fazer%20um%20pedido"
20+
target="_blank"
21+
>
22+
<Button title="Peça Agora" />
23+
</a>
2424
</div>
2525
</div>
2626
</div>
2727
);
2828
};
2929

30-
export default Home;
30+
export default Home;

src/components/Menu.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import DishesCard from "../layouts/DishesCard";
2+
import DishesCard from "./layouts/DishesCard";
33
import menu1 from "../assets/img/menu1.jpg";
44
import menu2 from "../assets/img/menu2.jpg";
55
import menu3 from "../assets/img/menu3.jpg";
@@ -14,7 +14,7 @@ const Menu = () => {
1414
return (
1515
<div className="min-h-screen flex flex-col justify-center items-center lg:px-32 px-5">
1616
<h1 className=" text-4xl font-semibold text-center lg:pt-8 pt-24 pb-10">
17-
Cardápio Premium
17+
Cardápio Premium
1818
</h1>
1919

2020
<div className=" flex flex-wrap gap-8 justify-center">
@@ -32,4 +32,4 @@ const Menu = () => {
3232
);
3333
};
3434

35-
export default Menu;
35+
export default Menu;

src/components/Navbar.jsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useState } from "react";
22
import { Link } from "react-scroll";
33
import { BiRestaurant } from "react-icons/bi";
4-
import Button from "../layouts/Button";
4+
import Button from "./layouts/Button";
55
import { AiOutlineMenuUnfold } from "react-icons/ai";
66
import { BiChevronDown } from "react-icons/bi";
77
import { AiOutlineClose } from "react-icons/ai";
@@ -133,13 +133,12 @@ const Navbar = () => {
133133
</Link>
134134

135135
{/* Button */}
136-
<a
136+
<a
137137
href="https://api.whatsapp.com/send/?phone=18981142927&text=Gostaria%20de%20fazer%20um%20pedido"
138138
target="_blank"
139139
>
140140
<Button title="Compre Agora" />
141141
</a>
142-
143142
</nav>
144143

145144
<div className="md:hidden flex items-center">

src/components/Review.jsx

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
import React from "react"
2-
import img1 from "../assets/img/pic1.png"
3-
import img2 from "../assets/img/pic2.png"
4-
import img3 from "../assets/img/pic3.png"
5-
import ReviewCard from "../layouts/ReviewCard";
1+
import React from "react";
2+
import img1 from "../assets/img/pic1.png";
3+
import img2 from "../assets/img/pic2.png";
4+
import img3 from "../assets/img/pic3.png";
5+
import ReviewCard from "./layouts/ReviewCard";
66

7-
const Review =()=>{
8-
return (
7+
const Review = () => {
8+
return (
9+
<div className="min-h-screen flex flex-col items-center justify-center md:px-32 px-5">
10+
<h1 className=" text-4xl font-semibold text-center lg:pt-16 pt-24 pb-10">
11+
Avaliações de Clientes
12+
</h1>
913

10-
<div className="min-h-screen flex flex-col items-center justify-center md:px-32 px-5">
11-
<h1 className=" text-4xl font-semibold text-center lg:pt-16 pt-24 pb-10">Avaliações de Clientes</h1>
14+
<div className=" flex flex-col md:flex-row gap-5 mt-5">
15+
<ReviewCard img={img1} name="Sophia Azura" />
16+
<ReviewCard img={img2} name="John Deo" />
17+
<ReviewCard img={img3} name="Victoria Zoe" />
18+
</div>
19+
</div>
20+
);
21+
};
1222

13-
<div className=" flex flex-col md:flex-row gap-5 mt-5">
14-
<ReviewCard img={img1} name="Sophia Azura" />
15-
<ReviewCard img={img2} name="John Deo" />
16-
<ReviewCard img={img3} name="Victoria Zoe"/>
17-
</div>
18-
</div>
19-
20-
21-
)
22-
}
23-
24-
export default Review;
23+
export default Review;
File renamed without changes.

0 commit comments

Comments
 (0)