diff --git a/src/app/components/Navbar.js b/src/app/components/Navbar.js index eef0604..b357fe3 100644 --- a/src/app/components/Navbar.js +++ b/src/app/components/Navbar.js @@ -60,14 +60,6 @@ export default function Navbar() { Services -
  • - - Pricing - -
  • -
    +

    + Contact us about anything related to our company or services. +
    + We'll do our best to get back to you as soon as possible. +

    +
    +

    + + + + 021 107 7483 +

    +

    + + + + + info@teatatucomputers.com + +

    +
    + diff --git a/src/app/contact/page.module.css b/src/app/contact/page.module.css index 403cffe..94fe0dc 100644 --- a/src/app/contact/page.module.css +++ b/src/app/contact/page.module.css @@ -33,4 +33,18 @@ .sm { font-size: 0.75em; font-style: italic; +} + +.contactDetails { + margin-bottom: 2em; +} + +.contactDetails h3 { + display: flex; + gap: 0.5em; + align-items: center; +} + +.contactDetails h3 a { + color: black; } \ No newline at end of file diff --git a/src/app/favicon.ico b/src/app/favicon.ico index 718d6fe..b320dff 100644 Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ diff --git a/src/app/globals.css b/src/app/globals.css index 04352a1..b796aa4 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -276,9 +276,8 @@ h2 { } } -p, -.text ul { - margin-bottom: 1rem; +p { + margin-bottom: 1.5em; } /* Add margin to lists */ diff --git a/src/app/layout.js b/src/app/layout.js index 81ecf79..568d3a4 100644 --- a/src/app/layout.js +++ b/src/app/layout.js @@ -17,8 +17,8 @@ const geistMono = localFont({ }); export const metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Te Atatu Computers", + description: "Your Local Experts for PCs, Laptops & More", }; export default function RootLayout({ children }) { diff --git a/src/app/page.js b/src/app/page.js index eccf109..2ccaafd 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -18,6 +18,7 @@ export default function Home() { placeholder="blur" quality={100} fill + priority sizes="100vw" style={{ objectFit: "cover", diff --git a/src/app/services/page.js b/src/app/services/page.js new file mode 100644 index 0000000..f1d038c --- /dev/null +++ b/src/app/services/page.js @@ -0,0 +1,102 @@ +import Cards from "../components/Cards"; +import Card from "../components/Card"; +import HeaderSm from "../components/HeaderSm"; +import styles from "../page.module.css"; + +export default function Home() { + return ( +
    + +
    +

    Services we Offer

    + + + + + +

    Computer Repair/Upgrades

    +

    + We can fix anything from a broken screen to a software issue, or + upgrade your computer's parts and optimise Windows to get + your PC running like new again. +

    +
    + + + + + +

    Desktop PC Building

    +

    + We'll help you pick the parts and build a custom gaming or + workstation PC for you. +

    +
    + + + + + +

    Remote Access Support

    +

    + We can remotely connect to your computer and fix + software/operating system related issues from the comfort of your + own home. +

    +
    + + + + + +

    Web Development

    +

    + We can develop a fast, modern and secure website for your business + using Wordpress or custom React/NextJS code. +

    +
    +
    +
    +
    + ); +}