Skip to content

Commit

Permalink
fix typo and add href
Browse files Browse the repository at this point in the history
  • Loading branch information
martinyonatann committed Jun 3, 2024
1 parent cbac73c commit 8b7c4b4
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 31 deletions.
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ import LayoutHome from "@/components/wrapper/layout-home";
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "I-Mader - Digital Innovation Maker For Your Bussines",
description: "Digital Innovation Maker For Your Bussines",
title: "I-Mader - Digital Innovation Maker For Your Business",
description: "Digital Innovation Maker For Your Business",
icons: {
icon: './ui/icon.ico',
shortcut: './ui/icon.ico',
},
openGraph:{
url: "i-mader.tech",
title:"I-Mader - Digital Innovation Maker For Your Bussines",
description:"Digital Innovation Maker For Your Bussines",
description:"Digital Innovation Maker For Your Business",
type:"website",
},
};
Expand Down
51 changes: 30 additions & 21 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function Home() {
<div className="col-span-6">
<div className="h-full flex items-center justify-center py-0 px-5 sm:py-10 sm:px-10">
<h1 className="text-white text-2xl sm:text-6xl font-bold leading-tight">
Digital Innovation Maker For Your Bussines
Digital Innovation Maker For Your Business
</h1>
</div>
</div>
Expand All @@ -91,25 +91,34 @@ export default function Home() {
Why Choose Us?
</h2>
<div className="grid grid-cols-4 sm:grid-cols-12 mt-5 sm:mt-14 gap-5 sm:gap-10">
{[1, 2, 3].map((items: any) => {
return (
<div className="col-span-4" key={items}>
<Card hoverable>
<div className="flex flex-col items-center justify-center">
<div className="w-[50px] h-[50px] sm:w-[96px] sm:h-[96px] bg-[#217BF4] rounded-full"></div>
<h3 className="text-[#217BF4] text-lg sm:text-2xl font-bold text-center mt-5">
Software Development
</h3>
<p className="text-sm sm:text-base text-[#656464] text-center mt-3">
Whether you are looking to buy a fixer-upper or renovate
your current home for sale, we will walk you through
potential returns for projects.
</p>
</div>
</Card>
</div>
);
})}
{[
{
title: "Project Management",
description: "Effective planning, execution, and delivery of IT projects with a focus on aligning with business goals, minimizing risks, and optimizing resources."
},
{
title: "Digital Transformation",
description: "Empowering your business to embrace the digital age by leveraging cutting-edge technologies to automate processes, enhance efficiency, and drive innovation."
},
{
title: "Software Development",
description: "Building customized software solutions tailored to your specific business needs, from web and mobile applications to complex enterprise systems."
}
].map((item, index) => (
<div className="col-span-4" key={index}>
<Card hoverable>
<div className="flex flex-col items-center justify-center">
<div className="w-[50px] h-[50px] sm:w-[96px] sm:h-[96px] bg-[#217BF4] rounded-full"></div>
<h3 className="text-[#217BF4] text-lg sm:text-2xl font-bold text-center mt-5">
{item.title}
</h3>
<p className="text-sm sm:text-base text-[#656464] text-center mt-3">
{item.description}
</p>
</div>
</Card>
</div>
))}
</div>
<div className="w-full flex items-center justify-center mt-10 sm:mt-16">
<Button
Expand All @@ -130,7 +139,7 @@ export default function Home() {
</div>
</div>
{/* sec 4 */}
<div id="home-sec-4" className="home-sec-4">
<div id="our-clients" className="home-sec-4">
<h2 className="text-[#217BF4] text-xl sm:text-3xl font-bold text-center">
Our Clients
</h2>
Expand Down
14 changes: 7 additions & 7 deletions src/components/wrapper/layout-home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,19 +171,19 @@ const LayoutHome = ({ children }: LayoutHome) => {
Hotline 24/7 <br /> (+23) 5535 68 68
</p>
<p className="mt-8">
<span className="font-bold">Address</span>: &nbsp;&nbsp;
2972 Westheimer Rd. Santa Ana, Illinois 85486
<span className="font-bold">Address</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: &nbsp;&nbsp;
DKI Jakarta, Indonesia
</p>
<p className="mt-2">
<span className="font-bold">Email</span>: &nbsp;&nbsp;
[email protected]
<span className="font-bold">Email</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: &nbsp;&nbsp;
[email protected]
</p>
<p className="mt-2">
<span className="font-bold">Fax</span>: &nbsp;&nbsp; (702)
555-0122
<span className="font-bold">Fax</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: &nbsp;&nbsp;
(702) 555-0122
</p>
<p className="mt-2">
<span className="font-bold">Work Hour</span>: &nbsp;&nbsp;
<span className="font-bold">Work Hour</span>&nbsp;&nbsp;&nbsp;: &nbsp;&nbsp;
Mon - Sat: 9:00 - 18:00
</p>
</div>
Expand Down

0 comments on commit 8b7c4b4

Please sign in to comment.