Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6 from AbandonTech/fix/minor-release-fixes
Browse files Browse the repository at this point in the history
Fix/minor release fixes
  • Loading branch information
fisher60 committed May 27, 2023
2 parents 7ed509d + 947925b commit ca8866d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Banner() {
<h1 className="text-5xl md:text-9xl font-bold select-none">AbandonTech</h1>
<h3 className="text-base md:text-4xl mt-6"><strong className="text-orange-400">Custom</strong> solutions to fit your <strong className="text-orange-400">business</strong></h3>

<a className="bg-white text-xl bg-opacity-0 mt-16 duration-300 hover:bg-opacity-5 text-orange-400 font-semibold py-4 px-6 border border-orange-400 hover:border-orange-600 hover:text-orange-600 hover:bg-orange-300 hover:cursor-pointer rounded" href="#contactUs">Contact Us</a>
<a className="bg-white text-xl bg-opacity-0 mt-10 md:mt-16 duration-300 hover:bg-opacity-5 text-orange-400 font-semibold p-3 md:p-4 border border-orange-400 hover:border-orange-600 hover:text-orange-600 hover:bg-orange-300 hover:cursor-pointer rounded" href="#contactUs">Contact Us</a>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import githubIcon from "@/components/github.svg";
const infoEmail = "[email protected]"
export default function Footer() {
return (
<div id="contactUs" className="flex justify-center md:justify-start w-screen text-lg text-orange-500 bg-white p-16">
<div id="contactUs" className="flex justify-center md:justify-start w-screen text-lg text-orange-500 bg-white py-16">
<div className="flex flex-col space-y-2 text-center md:text-left">
<a href={`mailto:${infoEmail}`}><Image className="inline-block mr-1" src={mailIcon} width={20} height={50} alt="email envelop icon" />{infoEmail}</a>
<a href="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/AbandonTech" target="_blank" rel="noreferrer"><Image className="inline-block mr-1" src={githubIcon} width={20} height={50} alt="github icon" />Github</a>
Expand Down
2 changes: 0 additions & 2 deletions src/pages/home.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import AboutSection from "@/components/aboutSection";
import Banner from "@/components/banner";
import Footer from "@/components/footer";
import Navbar from "@/components/navbar";

import hostingImg from "@/components/hosting.svg";
import otherImg from "@/components/other.svg";
Expand Down Expand Up @@ -47,7 +46,6 @@ const aboutOther = {
export default function Home() {
return (
<div className="md:overflow-hidden">
<Navbar />
<Banner />

<AboutSection
Expand Down
15 changes: 15 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
import Head from "next/head";
import Home from "@/pages/home";

export default function app() {
return (
<div className="bg-gray-950 min-h-screen font-primary">
<Head>
<title>AbandonTech</title>

<meta property="og:type" content="website" />
<meta property="og:url" content="https://AbandonTech.cloud" />
<meta property="og:title" content="AbandonTech" />
<meta name="description" content="Custom solutions for your business" key="desc" />
<meta property="og:description" content="We provide custom solutions for individuals and businesses looking to leverage technology to improve their experience." />
<meta property="twitter:title" content="AbandonTech" />
<meta property="og:site_name" content="AbandonTech" />
<meta name="theme-color" content="#f59e0b" />

</Head>

<Home />
</div>
)
Expand Down

0 comments on commit ca8866d

Please sign in to comment.