Skip to content

Commit

Permalink
hide our client and adjust section about us
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmathidayatullah committed Jun 14, 2024
1 parent 9ee94a4 commit 3ec446f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import Script from 'next/script'
// import Script from "next/script";
import Hero from "./ui/section/hero";
import WhyChooseUs from "./ui/section/why-choose-us";
import Blog from "./ui/section/blog";
import OurClients from "./ui/section/out-clients";
// import Blog from "./ui/section/blog";
// import OurClients from "./ui/section/out-clients";
import Skills from "./ui/section/skills";
import AboutUs from './ui/section/about-us';
import OurTeams from './ui/section/our-teams';
import AboutUs from "./ui/section/about-us";
import OurTeams from "./ui/section/our-teams";

export default function Home() {
return (
<>
<Hero />
<WhyChooseUs />
{/* <Blog /> */}
<OurClients />
{/* <OurClients /> */}
<Skills />
<AboutUs />
<OurTeams />
Expand Down
2 changes: 1 addition & 1 deletion src/app/ui/section/about-us.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const AboutUs = () => {
ABOUT US
</h2>

<div className="grid grid-cols-1 gap-5 mt-5 sm:mt-14">
<div className="grid grid-cols-1 gap-5 mt-5 sm:mt-14 mx-auto max-w-max sm:max-w-4xl">
{data.map(
(item: {
id: number;
Expand Down

0 comments on commit 3ec446f

Please sign in to comment.