This commit is contained in:
ASOwnerYT
2024-12-19 23:11:54 +13:00
parent ccc7104bd9
commit 4498eba73a
4 changed files with 42 additions and 9 deletions
+10 -3
View File
@@ -8,6 +8,7 @@
"name": "computer-repair",
"version": "0.1.0",
"dependencies": {
"@next/env": "^15.0.4",
"@vercel/analytics": "^1.4.1",
"next": "15.0.3",
"react": "19.0.0-rc-66855b96-20241106",
@@ -491,9 +492,9 @@
}
},
"node_modules/@next/env": {
"version": "15.0.3",
"resolved": "https://registry.npmjs.org/@next/env/-/env-15.0.3.tgz",
"integrity": "sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==",
"version": "15.0.4",
"resolved": "https://registry.npmjs.org/@next/env/-/env-15.0.4.tgz",
"integrity": "sha512-WNRvtgnRVDD4oM8gbUcRc27IAhaL4eXQ/2ovGbgLnPGUvdyDr8UdXP4Q/IBDdAdojnD2eScryIDirv0YUCjUVw==",
"license": "MIT"
},
"node_modules/@next/eslint-plugin-next": {
@@ -3866,6 +3867,12 @@
}
}
},
"node_modules/next/node_modules/@next/env": {
"version": "15.0.3",
"resolved": "https://registry.npmjs.org/@next/env/-/env-15.0.3.tgz",
"integrity": "sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==",
"license": "MIT"
},
"node_modules/node-addon-api": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
+1
View File
@@ -9,6 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@next/env": "^15.0.4",
"@vercel/analytics": "^1.4.1",
"next": "15.0.3",
"react": "19.0.0-rc-66855b96-20241106",
+25 -6
View File
@@ -29,11 +29,17 @@ export default function Home() {
<div className={styles.textboxInner}>
<h1 className={styles.h1}>Delivering Exceptional Service.</h1>
<p className={styles.p}>
<strong>Fast, Reliable Computer Repairs in Te Atatu Peninsula</strong><br/>
<strong>Your Local Experts for PCs, Laptops & More</strong> <br />
From hardware fixes to software solutions, we&apos;re here to get
your devices back in top shape. Friendly, affordable service
right in your neighborhood!
<strong>
Fast, Reliable Computer Repairs in Te Atatu Peninsula
</strong>
<br />
<strong>
Your Local Experts for PCs, Laptops & More
</strong>{" "}
<br />
From hardware fixes to software solutions, we&apos;re here
to get your devices back in top shape. Friendly, affordable
service right in your neighborhood!
</p>
<Link href="/contact">
<Button>
@@ -76,7 +82,9 @@ export default function Home() {
</svg>
<h2>Computer Repair/Upgrades</h2>
<p>
We can fix anything from a broken screen to a software issue, or upgrade your computer&apos;s parts and optimise Windows to get your PC running like new again.
We can fix anything from a broken screen to a software issue, or
upgrade your computer&apos;s parts and optimise Windows to get
your PC running like new again.
</p>
</Card>
<Card>
@@ -148,6 +156,17 @@ export default function Home() {
<Link href="/services">And more...</Link>
</p>
</section>
<section className="container">
<div className={styles.map}>
<iframe
src="https://storage.googleapis.com/maps-solutions-pks9pyo9nq/commutes/3v9s/commutes.html"
width="100%"
height="100%"
style={{ border: 0 }}
loading="lazy"
></iframe>
</div>
</section>
</main>
</div>
);
+6
View File
@@ -44,3 +44,9 @@
.center {
text-align: center;
}
.map {
height: 50em;
width: 100%;
margin-bottom: 10em;
}