This page showcases the About Section component from your project.
The About Section provides an overview of your application or business, typically used to describe your mission, values, and purpose.
Below is an example of how to import and use the About Section in your code:
// Import the AboutSection component
import { AboutSection } from "@/components/sections/AboutSection";
function HomePage() {
return (
<main>
<AboutSection />
</main>
);
}
export default HomePage;