Skip to content

Commit c00cf20

Browse files
committed
Revert "feat: add original images"
This reverts commit 6c47fe1.
1 parent dcd4f05 commit c00cf20

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</head>
1212

1313
<body>
14-
<div id="root"></div>
14+
<div id="root" style="min-width: 100vw;"></div>
1515
<script type="module" src="/src/main.jsx"></script>
1616
</body>
1717
</html>

src/pages/About/index.jsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// import React from "react";
22
import Heading from "@/components/Heading/index";
3+
import Stock1 from "@/assets/images/About/stockimage1.svg";
4+
import Stock3 from "@/assets/images/About/stockimage3.svg";
35
import Oval from "@/assets/images/About/oval.svg";
46
import PageTransition from "../../components/PageTransition";
57

@@ -8,7 +10,7 @@ function About() {
810
<PageTransition>
911
<div className="flex flex-col min-h-screen">
1012
{/* About Us Section */}
11-
<section className="bg-secondary-dark text-text-light py-8 px-4 md:px-8">
13+
<section className="bg-secondary-dark text-text-light py-12 px-4 md:px-8">
1214
<Heading
1315
text="ABOUT US"
1416
className="mb-8"
@@ -24,12 +26,12 @@ function About() {
2426
</p>
2527
<div className="flex flex-col md:flex-row justify-center gap-4">
2628
<img
27-
src="/CodeX-Website/gallery/Laser Lock/ll4.jpg"
29+
src={Stock1}
2830
alt="About Us 1"
2931
className="w-full md:w-1/2 max-w-md mx-auto rounded-2xl h-auto object-cover"
3032
/>
3133
<img
32-
src="/CodeX-Website/gallery/Laser Lock/ll5.jpg"
34+
src={Stock3}
3335
alt="About Us 2"
3436
className="w-full md:w-1/2 max-w-md mx-auto rounded-2xl h-auto object-cover"
3537
/>
@@ -92,12 +94,12 @@ function About() {
9294
</p>
9395
<div className="flex flex-col md:flex-row justify-center gap-8">
9496
<img
95-
src="/CodeX-Website/gallery/Community Session/cs4.jpg"
97+
src={Stock1}
9698
alt="What We Do 1"
9799
className="w-full md:w-1/2 max-w-md mx-auto rounded-lg h-auto object-cover"
98100
/>
99101
<img
100-
src="/CodeX-Website/gallery/AIML SESSION/aiml2.jpg"
102+
src={Stock3}
101103
alt="What We Do 2"
102104
className="w-full md:w-1/2 max-w-md mx-auto rounded-lg h-auto object-cover"
103105
/>

0 commit comments

Comments
 (0)