first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-12 23:25:43 -05:00
commit d8c7ec4866
1400 changed files with 90826 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
'use client'
import Image from "next/image";
import React from "react";
const BlogSidebarForm = () => {
const handleSubmit = (event) => {
event.preventDefault();
};
return (
<form onClick={handleSubmit}>
<input type="text" placeholder="Search" />
<button>
<Image width="18" height="20" src="/images/icon/50.svg" alt="icon" />
</button>
</form>
);
};
export default BlogSidebarForm;