first commit

This commit is contained in:
dev-chiefworks
2024-01-10 11:05:21 -05:00
commit 2ce13271d8
1398 changed files with 91003 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
'use client'
import Image from 'next/image';
import React from 'react'
export default function FaqForm() {
const handleSubmit = (event) => {
event.preventDefault();
};
return (
<form onClick={handleSubmit} className="search-form">
<input type="text" placeholder="Search for articles..." />
<button>
<Image width="27" height="23" src="/images/icon/47.svg" alt="icon" />
</button>
</form>
)
}