-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a services section and started to add slug types ofr services b…
…uttons
- Loading branch information
1 parent
66324ac
commit fb0387c
Showing
16 changed files
with
215 additions
and
7 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import Image from "next/image"; | ||
import Button from "../Button/page"; | ||
import Comm from "/public/images/comm.png"; | ||
import Home from "/public/images/home.png"; | ||
import Private from "/public/images/priv.png"; | ||
|
||
export default function Services() { | ||
return ( | ||
<section className="w-full h-auto mt-20"> | ||
<h1 className="mb-8 text-darkblue font-semibold text-5xl"> | ||
OUR SERVICES ENCOMPASS | ||
</h1> | ||
<div className="border-b-4 lg:border-b-8 border-orange w-full mb-8"></div> | ||
<div className="flex flex-col md:flex-row justify-between w-auto"> | ||
<div> | ||
<h2 className="mb-4 font-semibold text-2xl">COMMERCIAL SITES</h2> | ||
<Image | ||
src={Comm} | ||
alt="Commercial Sites" | ||
width={452} | ||
height={208} | ||
className="mb-4" | ||
/> | ||
<p className="mb-4"> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit | ||
amet, consectetur porta, lectus sed. Qsit amet, consectetur | ||
adipiscing elit. | ||
</p> | ||
<Button type="commercial" /> | ||
</div> | ||
<div> | ||
<h2 className="mb-4 font-semibold text-2xl">PRIVATE HOUSE</h2> | ||
<Image | ||
src={Private} | ||
alt="Private House" | ||
width={452} | ||
height={208} | ||
className="mb-4" | ||
/> | ||
<p className="mb-4"> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit | ||
amet, consectetur porta, lectus sed. Qsit amet, consectetur | ||
adipiscing elit. | ||
</p> | ||
<Button type="private" /> | ||
</div> | ||
<div> | ||
<h2 className="mb-4 font-semibold text-2xl">HOME OWNER</h2> | ||
<Image | ||
src={Home} | ||
alt="Home Owner" | ||
width={452} | ||
height={208} | ||
className="mb-4" | ||
/> | ||
<p className="mb-4"> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit | ||
amet, consectetur porta, lectus sed. Qsit amet, consectetur | ||
adipiscing elit. | ||
</p> | ||
<Button type="homeowner" /> | ||
</div> | ||
</div> | ||
<div className="border-4 border-orange w-full mt-8 h-auto rounded-md "> | ||
<div className="w-[30%] mx-10 my-12"> | ||
<h2 className="mb-4 font-semibold text-4xl text-lightblue"> | ||
At Irwin, we handle all aspects of plastering | ||
</h2> | ||
<p className="mb-4"> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit | ||
amet, consectetur porta, lectus sed. Qsit amet, consectetur | ||
adipiscing elit. | ||
</p> | ||
<ul className="text-xl"> | ||
<li className="text-darkblue font-semibold italic">• Plastering</li> | ||
<li className="text-darkblue font-semibold italic">• K Rend</li> | ||
<li className="text-darkblue font-semibold italic"> | ||
• Coloured Renders{" "} | ||
</li> | ||
<li className="text-darkblue font-semibold italic"> | ||
• Liquid Screed | ||
</li> | ||
<li className="text-darkblue font-semibold italic">• Renderins</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.border-top-custom { | ||
border-top: 2px solid white; | ||
} | ||
|
||
@media (max-width: 640px) { | ||
.border-top-custom { | ||
border-top: 1.5px solid white; | ||
left: 55px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.border-top-custom-head { | ||
border-top: 2px solid darkblue; | ||
} | ||
|
||
@media (max-width: 640px) { | ||
.border-top-custom-head { | ||
border-top: 1.5px solid darkblue; | ||
left: 55px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters