40 lines
2.8 KiB
TypeScript
40 lines
2.8 KiB
TypeScript
"use client";
|
|
|
|
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
|
|
|
export default function NewPage() {
|
|
return (
|
|
<main>
|
|
<div id="faq" data-section="faq">
|
|
<FaqDouble
|
|
title="Frequently Asked Questions"
|
|
description="Common questions about my experience, approach, and availability"
|
|
textboxLayout="default"
|
|
useInvertedBackground="invertDefault"
|
|
animationType="smooth"
|
|
faqs={[
|
|
{
|
|
id: "1", title: "What is your approach to technical leadership?", content: "I believe in leading by example, fostering psychological safety, and empowering engineers to make decisions. My approach combines strategic vision with hands-on technical involvement, ensuring alignment between business goals and engineering excellence."
|
|
},
|
|
{
|
|
id: "2", title: "How do you scale engineering teams?", content: "Scaling requires clear communication, strong processes, and investing in culture. I focus on hiring top talent, establishing clear ownership domains, implementing robust code review practices, and maintaining engineering velocity as teams grow."
|
|
},
|
|
{
|
|
id: "3", title: "What technologies are you most experienced with?", content: "I have deep expertise in cloud platforms (AWS, GCP), containerization (Docker, Kubernetes), programming languages (Python, Go, Node.js, Java), and various databases. However, I prioritize choosing the right tool for the problem over technology preferences."
|
|
},
|
|
{
|
|
id: "4", title: "Are you available for consulting or advisory roles?", content: "Yes, I'm open to select consulting engagements and advisory board positions with companies aligned with my interests in technology, innovation, and ethical engineering practices. Please reach out to discuss opportunities."
|
|
},
|
|
{
|
|
id: "5", title: "Do you speak at conferences or write about technology?", content: "I actively participate in the tech community through conference speaking, technical writing, and mentoring. I enjoy sharing insights on architecture, leadership, and engineering culture. Let's connect if you're interested in collaboration."
|
|
},
|
|
{
|
|
id: "6", title: "What are your thoughts on AI and machine learning?", content: "AI is transformative but requires thoughtful implementation. I'm focused on practical applications that solve real problems, understanding ethical implications, and ensuring responsible AI practices within organizations."
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|