Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
  • Loading branch information
ezralazuardy committed Dec 2, 2024
1 parent 24a5797 commit ca45563
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions components/ui/home/contact-form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ const FormSchema = z.object({
email: z
.string()
.min(2, {
message: "Name must be at least 2 characters.",
message: "Email must be at least 2 characters.",
})
.max(100, {
message: "Name must be at most 100 characters.",
message: "Email must be at most 100 characters.",
})
.email(),
message: z
.string()
.min(2, {
message: "Name must be at least 2 characters.",
message: "Message must be at least 2 characters.",
})
.max(3000, {
message: "Name must be at most 3000 characters.",
message: "Message must be at most 3000 characters.",
}),
});

Expand Down
6 changes: 3 additions & 3 deletions components/ui/home/content-first.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import logo from "@/public/images/logo.webp";

export default function ContentFirst() {
return (
<div className="flex flex-col w-full px-20 min-h-screen pt-40">
<div className="w-full flex flex-col items-center justify-center mb-10">
<div className="flex flex-col w-full px-20 min-h-screen pt-28">
<div className="w-full flex flex-col items-center justify-center mb-16">
<BlurFade delay={0.5} inView>
<Image src={logo} alt="logo" width={220} height="auto" />
<Image src={logo} alt="logo" width={240} height="auto" />
</BlurFade>
</div>
<div className="w-full grid grid-cols-2">
Expand Down

0 comments on commit ca45563

Please sign in to comment.