Skip to content

Commit 07740fb

Browse files
committed
Added Content
1 parent 3754ef1 commit 07740fb

8 files changed

+8
-74
lines changed

components/DashboardV2/BenefitsSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const benefitList: BenefitsProps[] = [
3737

3838
export const BenefitsSection = () => {
3939
return (
40-
<section id="benefits" className="container mx-auto py-24 sm:py-32">
40+
<section id="benefits" className="container mx-auto px-3 py-24 sm:py-32">
4141
<div className="grid lg:grid-cols-2 place-items-center lg:gap-24">
4242
<div>
4343
<h2 className="text-lg text-primary mb-2 tracking-wider">Benefits</h2>

components/DashboardV2/ContactSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const ContactSection = () => {
5858
}
5959

6060
return (
61-
<section id="contact" className="container mx-auto py-24 sm:py-32">
61+
<section id="contact" className="container px-3 mx-auto py-24 sm:py-32">
6262
<section className="grid grid-cols-1 md:grid-cols-2 gap-8">
6363
<div>
6464
<div className="mb-4">

components/DashboardV2/FAQSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const FAQList: FAQProps[] = [
5353

5454
export const FAQSection = () => {
5555
return (
56-
<section id="faq" className="container mx-auto md:w-[900px] py-24 sm:py-32">
56+
<section id="faq" className="container px-3 mx-auto md:w-[900px] py-24 sm:py-32">
5757
<div className="text-center mb-8">
5858
<h2 className="text-lg text-indigo-500 text-center mb-2 tracking-wider">
5959
FAQS

components/DashboardV2/FooterSection.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
import { Separator } from "@/components/ui/separator";
2-
import { ChevronsDownIcon } from "lucide-react";
31
import Link from "next/link";
42
import { Avatar, AvatarFallback, AvatarImage } from "../ui/avatar";
53

64
export const FooterSection = () => {
75
return (
8-
<footer id="footer" className="container mx-auto py-24 sm:py-32">
6+
<footer id="footer" className="container px-3 mx-auto py-24 sm:py-32">
97
<div className="p-10 bg-card border border-secondary rounded-2xl">
108
<div className="grid grid-cols-2 md:grid-cols-4 xl:grid-cols-6 gap-x-12 gap-y-8">
119
<div className="col-span-full xl:col-span-2">

components/DashboardV2/PricingSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const plans: PlanProps[] = [
7373

7474
export const PricingSection = () => {
7575
return (
76-
<section className="container mx-auto py-24 sm:py-32">
76+
<section className="container px-3 mx-auto py-24 sm:py-32">
7777
<h2 className="text-lg text-primary text-center mb-2 tracking-wider">
7878
Pricing
7979
</h2>

components/DashboardV2/ServicesSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const serviceList: ServiceProps[] = [
5353

5454
export const ServicesSection = () => {
5555
return (
56-
<section id="services" className="container mx-auto py-24 sm:py-32">
56+
<section id="services" className="container mx-auto px-3 py-24 sm:py-32">
5757
<h2 className="text-lg text-primary text-center mb-2 tracking-wider">
5858
Services
5959
</h2>

components/DashboardV2/TeamSection.tsx

Lines changed: 1 addition & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -98,70 +98,6 @@ export const TeamSection = () => {
9898
},
9999
],
100100
},
101-
{
102-
imageUrl:
103-
"https://images.unsplash.com/photo-1616805765352-beedbad46b2a?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
104-
firstName: "Michael",
105-
lastName: "Holland",
106-
positions: ["DevOps Engineer", "CI/CD Pipeline Mastermind"],
107-
socialNetworks: [
108-
{
109-
name: "LinkedIn",
110-
url: "https://www.linkedin.com/in/leopoldo-miranda/",
111-
},
112-
],
113-
},
114-
{
115-
imageUrl:
116-
"https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?q=80&w=1587&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
117-
firstName: "Zoe",
118-
lastName: "Garcia",
119-
positions: ["JavaScript Evangelist", "Deno Champion"],
120-
socialNetworks: [
121-
{
122-
name: "LinkedIn",
123-
url: "https://www.linkedin.com/in/leopoldo-miranda/",
124-
},
125-
{
126-
name: "Github",
127-
url: "https://github.com/leoMirandaa",
128-
},
129-
],
130-
},
131-
{
132-
imageUrl:
133-
"https://images.unsplash.com/photo-1633332755192-727a05c4013d?q=80&w=1480&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
134-
firstName: "Evan",
135-
lastName: "James",
136-
positions: ["Backend Developer"],
137-
socialNetworks: [
138-
{
139-
name: "LinkedIn",
140-
url: "https://www.linkedin.com/in/leopoldo-miranda/",
141-
},
142-
{
143-
name: "Github",
144-
url: "https://github.com/leoMirandaa",
145-
},
146-
{
147-
name: "X",
148-
url: "https://x.com/leo_mirand4",
149-
},
150-
],
151-
},
152-
{
153-
imageUrl:
154-
"https://images.unsplash.com/photo-1573497019236-17f8177b81e8?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3Dhttps://images.unsplash.com/photo-1573497019236-17f8177b81e8?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
155-
firstName: "Pam",
156-
lastName: "Taylor",
157-
positions: ["Fullstack Developer", "UX Researcher"],
158-
socialNetworks: [
159-
{
160-
name: "X",
161-
url: "https://x.com/leo_mirand4",
162-
},
163-
],
164-
},
165101
];
166102
const socialIcon = (socialName: string) => {
167103
switch (socialName) {
@@ -175,7 +111,7 @@ export const TeamSection = () => {
175111
};
176112

177113
return (
178-
<section id="team" className="container mx-auto lg:w-[75%] py-24 sm:py-32">
114+
<section id="team" className="container px-3 mx-auto lg:w-[75%] py-24 sm:py-32">
179115
<div className="text-center mb-8">
180116
<h2 className="text-lg text-primary text-center mb-2 tracking-wider">
181117
Team

components/DashboardV2/TestimonialSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const reviewList: ReviewProps[] = [
7878

7979
export const TestimonialSection = () => {
8080
return (
81-
<section id="testimonials" className="container mx-auto py-24 sm:py-32">
81+
<section id="testimonials" className="container mx-auto px-3 py-24 sm:py-32">
8282
<div className="text-center mb-8">
8383
<h2 className="text-lg text-primary text-center mb-2 tracking-wider">
8484
Testimonials

0 commit comments

Comments
 (0)