snowbase-templates-installer 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/README.md +70 -0
  2. package/bin/cli.js +140 -0
  3. package/landing-pages/ai-saas-template/.orchids/orchids.json +8 -0
  4. package/landing-pages/ai-saas-template/README.md +36 -0
  5. package/landing-pages/ai-saas-template/bun.lock +2062 -0
  6. package/landing-pages/ai-saas-template/components.json +22 -0
  7. package/landing-pages/ai-saas-template/eslint.config.mjs +33 -0
  8. package/landing-pages/ai-saas-template/next.config.ts +24 -0
  9. package/landing-pages/ai-saas-template/package-lock.json +11708 -0
  10. package/landing-pages/ai-saas-template/package.json +114 -0
  11. package/landing-pages/ai-saas-template/postcss.config.mjs +7 -0
  12. package/landing-pages/ai-saas-template/public/file.svg +1 -0
  13. package/landing-pages/ai-saas-template/public/globe.svg +1 -0
  14. package/landing-pages/ai-saas-template/public/next.svg +1 -0
  15. package/landing-pages/ai-saas-template/public/vercel.svg +1 -0
  16. package/landing-pages/ai-saas-template/public/window.svg +1 -0
  17. package/landing-pages/ai-saas-template/src/app/favicon.ico +0 -0
  18. package/landing-pages/ai-saas-template/src/app/global-error.tsx +5 -0
  19. package/landing-pages/ai-saas-template/src/app/globals.css +172 -0
  20. package/landing-pages/ai-saas-template/src/app/layout.tsx +42 -0
  21. package/landing-pages/ai-saas-template/src/app/page.tsx +23 -0
  22. package/landing-pages/ai-saas-template/src/components/ErrorReporter.tsx +136 -0
  23. package/landing-pages/ai-saas-template/src/components/sections/cta.tsx +62 -0
  24. package/landing-pages/ai-saas-template/src/components/sections/features-grid.tsx +205 -0
  25. package/landing-pages/ai-saas-template/src/components/sections/footer.tsx +111 -0
  26. package/landing-pages/ai-saas-template/src/components/sections/hero.tsx +92 -0
  27. package/landing-pages/ai-saas-template/src/components/sections/logos.tsx +69 -0
  28. package/landing-pages/ai-saas-template/src/components/sections/navbar.tsx +83 -0
  29. package/landing-pages/ai-saas-template/src/components/sections/testimonials-header.tsx +41 -0
  30. package/landing-pages/ai-saas-template/src/components/sections/value-props.tsx +97 -0
  31. package/landing-pages/ai-saas-template/src/components/ui/accordion.tsx +66 -0
  32. package/landing-pages/ai-saas-template/src/components/ui/alert-dialog.tsx +157 -0
  33. package/landing-pages/ai-saas-template/src/components/ui/alert.tsx +66 -0
  34. package/landing-pages/ai-saas-template/src/components/ui/aspect-ratio.tsx +11 -0
  35. package/landing-pages/ai-saas-template/src/components/ui/avatar.tsx +53 -0
  36. package/landing-pages/ai-saas-template/src/components/ui/badge.tsx +46 -0
  37. package/landing-pages/ai-saas-template/src/components/ui/breadcrumb.tsx +109 -0
  38. package/landing-pages/ai-saas-template/src/components/ui/button-group.tsx +83 -0
  39. package/landing-pages/ai-saas-template/src/components/ui/button.tsx +59 -0
  40. package/landing-pages/ai-saas-template/src/components/ui/calendar.tsx +213 -0
  41. package/landing-pages/ai-saas-template/src/components/ui/card.tsx +92 -0
  42. package/landing-pages/ai-saas-template/src/components/ui/carousel.tsx +241 -0
  43. package/landing-pages/ai-saas-template/src/components/ui/chart.tsx +353 -0
  44. package/landing-pages/ai-saas-template/src/components/ui/checkbox.tsx +32 -0
  45. package/landing-pages/ai-saas-template/src/components/ui/collapsible.tsx +33 -0
  46. package/landing-pages/ai-saas-template/src/components/ui/command.tsx +184 -0
  47. package/landing-pages/ai-saas-template/src/components/ui/context-menu.tsx +252 -0
  48. package/landing-pages/ai-saas-template/src/components/ui/dialog.tsx +143 -0
  49. package/landing-pages/ai-saas-template/src/components/ui/drawer.tsx +135 -0
  50. package/landing-pages/ai-saas-template/src/components/ui/dropdown-menu.tsx +257 -0
  51. package/landing-pages/ai-saas-template/src/components/ui/empty.tsx +104 -0
  52. package/landing-pages/ai-saas-template/src/components/ui/field.tsx +248 -0
  53. package/landing-pages/ai-saas-template/src/components/ui/form.tsx +167 -0
  54. package/landing-pages/ai-saas-template/src/components/ui/hover-card.tsx +44 -0
  55. package/landing-pages/ai-saas-template/src/components/ui/input-group.tsx +170 -0
  56. package/landing-pages/ai-saas-template/src/components/ui/input-otp.tsx +77 -0
  57. package/landing-pages/ai-saas-template/src/components/ui/input.tsx +21 -0
  58. package/landing-pages/ai-saas-template/src/components/ui/item.tsx +193 -0
  59. package/landing-pages/ai-saas-template/src/components/ui/kbd.tsx +28 -0
  60. package/landing-pages/ai-saas-template/src/components/ui/label.tsx +24 -0
  61. package/landing-pages/ai-saas-template/src/components/ui/menubar.tsx +276 -0
  62. package/landing-pages/ai-saas-template/src/components/ui/navigation-menu.tsx +168 -0
  63. package/landing-pages/ai-saas-template/src/components/ui/pagination.tsx +127 -0
  64. package/landing-pages/ai-saas-template/src/components/ui/popover.tsx +48 -0
  65. package/landing-pages/ai-saas-template/src/components/ui/progress.tsx +31 -0
  66. package/landing-pages/ai-saas-template/src/components/ui/radio-group.tsx +45 -0
  67. package/landing-pages/ai-saas-template/src/components/ui/resizable.tsx +56 -0
  68. package/landing-pages/ai-saas-template/src/components/ui/scroll-area.tsx +58 -0
  69. package/landing-pages/ai-saas-template/src/components/ui/select.tsx +185 -0
  70. package/landing-pages/ai-saas-template/src/components/ui/separator.tsx +28 -0
  71. package/landing-pages/ai-saas-template/src/components/ui/sheet.tsx +139 -0
  72. package/landing-pages/ai-saas-template/src/components/ui/sidebar.tsx +726 -0
  73. package/landing-pages/ai-saas-template/src/components/ui/skeleton.tsx +13 -0
  74. package/landing-pages/ai-saas-template/src/components/ui/slider.tsx +63 -0
  75. package/landing-pages/ai-saas-template/src/components/ui/sonner.tsx +25 -0
  76. package/landing-pages/ai-saas-template/src/components/ui/spinner.tsx +16 -0
  77. package/landing-pages/ai-saas-template/src/components/ui/switch.tsx +31 -0
  78. package/landing-pages/ai-saas-template/src/components/ui/table.tsx +116 -0
  79. package/landing-pages/ai-saas-template/src/components/ui/tabs.tsx +66 -0
  80. package/landing-pages/ai-saas-template/src/components/ui/textarea.tsx +18 -0
  81. package/landing-pages/ai-saas-template/src/components/ui/toggle-group.tsx +73 -0
  82. package/landing-pages/ai-saas-template/src/components/ui/toggle.tsx +47 -0
  83. package/landing-pages/ai-saas-template/src/components/ui/tooltip.tsx +61 -0
  84. package/landing-pages/ai-saas-template/src/hooks/use-mobile.ts +19 -0
  85. package/landing-pages/ai-saas-template/src/lib/hooks/use-mobile.tsx +21 -0
  86. package/landing-pages/ai-saas-template/src/lib/utils.ts +6 -0
  87. package/landing-pages/ai-saas-template/src/visual-edits/VisualEditsMessenger.tsx +2159 -0
  88. package/landing-pages/ai-saas-template/src/visual-edits/component-tagger-loader.js +460 -0
  89. package/landing-pages/ai-saas-template/tsconfig.json +42 -0
  90. package/landing-pages/open-engineer-template/.orchids/orchids.json +8 -0
  91. package/landing-pages/open-engineer-template/README.md +36 -0
  92. package/landing-pages/open-engineer-template/bun.lock +2062 -0
  93. package/landing-pages/open-engineer-template/components.json +22 -0
  94. package/landing-pages/open-engineer-template/eslint.config.mjs +33 -0
  95. package/landing-pages/open-engineer-template/next.config.ts +24 -0
  96. package/landing-pages/open-engineer-template/package-lock.json +13669 -0
  97. package/landing-pages/open-engineer-template/package.json +114 -0
  98. package/landing-pages/open-engineer-template/postcss.config.mjs +7 -0
  99. package/landing-pages/open-engineer-template/public/file.svg +1 -0
  100. package/landing-pages/open-engineer-template/public/globe.svg +1 -0
  101. package/landing-pages/open-engineer-template/public/next.svg +1 -0
  102. package/landing-pages/open-engineer-template/public/vercel.svg +1 -0
  103. package/landing-pages/open-engineer-template/public/window.svg +1 -0
  104. package/landing-pages/open-engineer-template/src/app/favicon.ico +0 -0
  105. package/landing-pages/open-engineer-template/src/app/global-error.tsx +5 -0
  106. package/landing-pages/open-engineer-template/src/app/globals.css +189 -0
  107. package/landing-pages/open-engineer-template/src/app/layout.tsx +42 -0
  108. package/landing-pages/open-engineer-template/src/app/page.tsx +31 -0
  109. package/landing-pages/open-engineer-template/src/components/ErrorReporter.tsx +136 -0
  110. package/landing-pages/open-engineer-template/src/components/sections/cta-stats.tsx +71 -0
  111. package/landing-pages/open-engineer-template/src/components/sections/faq.tsx +188 -0
  112. package/landing-pages/open-engineer-template/src/components/sections/features-grid.tsx +193 -0
  113. package/landing-pages/open-engineer-template/src/components/sections/footer.tsx +137 -0
  114. package/landing-pages/open-engineer-template/src/components/sections/header.tsx +105 -0
  115. package/landing-pages/open-engineer-template/src/components/sections/hero.tsx +118 -0
  116. package/landing-pages/open-engineer-template/src/components/sections/how-it-works.tsx +123 -0
  117. package/landing-pages/open-engineer-template/src/components/sections/pricing.tsx +168 -0
  118. package/landing-pages/open-engineer-template/src/components/sections/testimonials-logos.tsx +88 -0
  119. package/landing-pages/open-engineer-template/src/components/sections/use-cases.tsx +141 -0
  120. package/landing-pages/open-engineer-template/src/components/sections/workflow-tabs.tsx +792 -0
  121. package/landing-pages/open-engineer-template/src/components/ui/accordion.tsx +66 -0
  122. package/landing-pages/open-engineer-template/src/components/ui/alert-dialog.tsx +157 -0
  123. package/landing-pages/open-engineer-template/src/components/ui/alert.tsx +66 -0
  124. package/landing-pages/open-engineer-template/src/components/ui/aspect-ratio.tsx +11 -0
  125. package/landing-pages/open-engineer-template/src/components/ui/avatar.tsx +53 -0
  126. package/landing-pages/open-engineer-template/src/components/ui/badge.tsx +46 -0
  127. package/landing-pages/open-engineer-template/src/components/ui/breadcrumb.tsx +109 -0
  128. package/landing-pages/open-engineer-template/src/components/ui/button-group.tsx +83 -0
  129. package/landing-pages/open-engineer-template/src/components/ui/button.tsx +59 -0
  130. package/landing-pages/open-engineer-template/src/components/ui/calendar.tsx +213 -0
  131. package/landing-pages/open-engineer-template/src/components/ui/card.tsx +92 -0
  132. package/landing-pages/open-engineer-template/src/components/ui/carousel.tsx +241 -0
  133. package/landing-pages/open-engineer-template/src/components/ui/chart.tsx +353 -0
  134. package/landing-pages/open-engineer-template/src/components/ui/checkbox.tsx +32 -0
  135. package/landing-pages/open-engineer-template/src/components/ui/collapsible.tsx +33 -0
  136. package/landing-pages/open-engineer-template/src/components/ui/command.tsx +184 -0
  137. package/landing-pages/open-engineer-template/src/components/ui/context-menu.tsx +252 -0
  138. package/landing-pages/open-engineer-template/src/components/ui/dialog.tsx +143 -0
  139. package/landing-pages/open-engineer-template/src/components/ui/drawer.tsx +135 -0
  140. package/landing-pages/open-engineer-template/src/components/ui/dropdown-menu.tsx +257 -0
  141. package/landing-pages/open-engineer-template/src/components/ui/empty.tsx +104 -0
  142. package/landing-pages/open-engineer-template/src/components/ui/field.tsx +248 -0
  143. package/landing-pages/open-engineer-template/src/components/ui/form.tsx +167 -0
  144. package/landing-pages/open-engineer-template/src/components/ui/hover-card.tsx +44 -0
  145. package/landing-pages/open-engineer-template/src/components/ui/input-group.tsx +170 -0
  146. package/landing-pages/open-engineer-template/src/components/ui/input-otp.tsx +77 -0
  147. package/landing-pages/open-engineer-template/src/components/ui/input.tsx +21 -0
  148. package/landing-pages/open-engineer-template/src/components/ui/item.tsx +193 -0
  149. package/landing-pages/open-engineer-template/src/components/ui/kbd.tsx +28 -0
  150. package/landing-pages/open-engineer-template/src/components/ui/label.tsx +24 -0
  151. package/landing-pages/open-engineer-template/src/components/ui/menubar.tsx +276 -0
  152. package/landing-pages/open-engineer-template/src/components/ui/navigation-menu.tsx +168 -0
  153. package/landing-pages/open-engineer-template/src/components/ui/pagination.tsx +127 -0
  154. package/landing-pages/open-engineer-template/src/components/ui/popover.tsx +48 -0
  155. package/landing-pages/open-engineer-template/src/components/ui/progress.tsx +31 -0
  156. package/landing-pages/open-engineer-template/src/components/ui/radio-group.tsx +45 -0
  157. package/landing-pages/open-engineer-template/src/components/ui/resizable.tsx +56 -0
  158. package/landing-pages/open-engineer-template/src/components/ui/scroll-area.tsx +58 -0
  159. package/landing-pages/open-engineer-template/src/components/ui/select.tsx +185 -0
  160. package/landing-pages/open-engineer-template/src/components/ui/separator.tsx +28 -0
  161. package/landing-pages/open-engineer-template/src/components/ui/sheet.tsx +139 -0
  162. package/landing-pages/open-engineer-template/src/components/ui/sidebar.tsx +726 -0
  163. package/landing-pages/open-engineer-template/src/components/ui/skeleton.tsx +13 -0
  164. package/landing-pages/open-engineer-template/src/components/ui/slider.tsx +63 -0
  165. package/landing-pages/open-engineer-template/src/components/ui/sonner.tsx +25 -0
  166. package/landing-pages/open-engineer-template/src/components/ui/spinner.tsx +16 -0
  167. package/landing-pages/open-engineer-template/src/components/ui/switch.tsx +31 -0
  168. package/landing-pages/open-engineer-template/src/components/ui/table.tsx +116 -0
  169. package/landing-pages/open-engineer-template/src/components/ui/tabs.tsx +66 -0
  170. package/landing-pages/open-engineer-template/src/components/ui/textarea.tsx +18 -0
  171. package/landing-pages/open-engineer-template/src/components/ui/toggle-group.tsx +73 -0
  172. package/landing-pages/open-engineer-template/src/components/ui/toggle.tsx +47 -0
  173. package/landing-pages/open-engineer-template/src/components/ui/tooltip.tsx +61 -0
  174. package/landing-pages/open-engineer-template/src/hooks/use-mobile.ts +19 -0
  175. package/landing-pages/open-engineer-template/src/lib/hooks/use-mobile.tsx +21 -0
  176. package/landing-pages/open-engineer-template/src/lib/utils.ts +6 -0
  177. package/landing-pages/open-engineer-template/src/visual-edits/VisualEditsMessenger.tsx +2159 -0
  178. package/landing-pages/open-engineer-template/src/visual-edits/component-tagger-loader.js +460 -0
  179. package/landing-pages/open-engineer-template/tsconfig.json +42 -0
  180. package/package.json +36 -0
  181. package/templates.json +22 -0
@@ -0,0 +1,188 @@
1
+ "use client";
2
+
3
+ import React, { useState } from "react";
4
+ import { Plus, Minus } from "lucide-react";
5
+
6
+ interface FAQItem {
7
+ id: string;
8
+ question: string;
9
+ answer: string;
10
+ }
11
+
12
+ const productFaqs: FAQItem[] = [
13
+ {
14
+ id: "p1",
15
+ question: "1. What exactly is this ai agent?",
16
+ answer: "This is your personal AI productivity agent that automates repetitive tasks, efficiently manages workflows, and helps you stay organised across all your essential tools.",
17
+ },
18
+ {
19
+ id: "p2",
20
+ question: "2. Do I need to install any software?",
21
+ answer: "No installation required. Open Engineer is a cloud-based platform that works directly in your browser. You can access it from any device with an internet connection.",
22
+ },
23
+ {
24
+ id: "p3",
25
+ question: "3. How does this tool keep my data secure?",
26
+ answer: "We use industry-standard encryption protocols (AES-256) and secure API integrations. Your data is never used to train global models without your explicit consent.",
27
+ },
28
+ {
29
+ id: "p4",
30
+ question: "4. What kind of tasks can agent automate?",
31
+ answer: "From lead qualification and meeting preparation to routine data entry and complex cross-app synchronisations, the agent handles any logic-based workflow.",
32
+ },
33
+ {
34
+ id: "p5",
35
+ question: "5. Can I use this tool for my team?",
36
+ answer: "Yes, Open Engineer is built for collaboration. You can invite team members, share automated workflows, and maintain a centralized dashboard for operations.",
37
+ },
38
+ ];
39
+
40
+ const billingFaqs: FAQItem[] = [
41
+ {
42
+ id: "b1",
43
+ question: "1. Can I switch plans anytime?",
44
+ answer: "Yes, you can upgrade or downgrade your plan at any time from your account settings. Changes are applied immediately and prorated accordingly.",
45
+ },
46
+ {
47
+ id: "b2",
48
+ question: "2. Do you offer a free trial?",
49
+ answer: "Absolutely. We offer a 14-day free trial on our Pro plan so you can experience the full power of the AI agent before committing.",
50
+ },
51
+ {
52
+ id: "b3",
53
+ question: "3. What happens if I exceed my task limit?",
54
+ answer: "Once you reach your monthly limit, your automations will pause until your next billing cycle. You can upgrade anytime for more capacity. We send notifications at 80% and 95% usage to help you plan ahead.",
55
+ },
56
+ {
57
+ id: "b4",
58
+ question: "4. Can multiple team members use one account?",
59
+ answer: "Our Pro and Enterprise plans support multi-user collaboration. Each team member will have their own credentials linked to the organization's workspace.",
60
+ },
61
+ {
62
+ id: "b5",
63
+ question: "5. How secure is my data?",
64
+ answer: "Your security is our priority. We are SOC2 compliant and undergo regular third-party security audits to ensure your business data remains protected.",
65
+ },
66
+ ];
67
+
68
+ export default function FAQSection() {
69
+ const [openItems, setOpenItems] = useState<Record<string, boolean>>({
70
+ p1: true,
71
+ b3: true,
72
+ });
73
+
74
+ const toggleItem = (id: string) => {
75
+ setOpenItems((prev) => ({
76
+ ...prev,
77
+ [id]: !prev[id],
78
+ }));
79
+ };
80
+
81
+ return (
82
+ <section id="faq" className="w-full bg-background">
83
+ {/* Header Divider */}
84
+ <div className="border-y px-4 sm:px-6 lg:px-8">
85
+ <div className="mx-auto flex max-w-7xl flex-col items-center border-x px-4 py-8 text-center sm:px-6 lg:px-8 lg:py-12">
86
+ <span className="text-sm font-semibold tracking-wider text-muted-foreground uppercase mb-4">
87
+ FAQ
88
+ </span>
89
+ <p className="text-muted-foreground text-sm">
90
+ Essential answers about using and integrating the AI agent.
91
+ </p>
92
+ </div>
93
+ </div>
94
+
95
+ {/* Main Content Area */}
96
+ <div className="border-b px-4 sm:px-6 lg:px-8">
97
+ <div className="mx-auto flex max-w-7xl flex-col border-x bg-white/30 backdrop-blur-sm">
98
+ {/* Section Hero */}
99
+ <div className="flex flex-col items-center gap-6 px-4 py-12 pt-16 text-center sm:px-6 lg:px-8">
100
+ <h2 className="text-3xl font-semibold tracking-tight text-foreground sm:text-4xl">
101
+ Need Help? We&apos;ve Got Answers
102
+ </h2>
103
+ <p className="max-w-2xl text-lg text-muted-foreground">
104
+ Explore Our Most Commonly Asked Questions and Find the Information You Need.
105
+ </p>
106
+ <div className="flex items-center gap-3">
107
+ <a
108
+ href="/docs"
109
+ className="btn-3d-primary inline-flex h-10 items-center justify-center rounded-md bg-primary px-8 text-sm font-medium text-primary-foreground shadow-[inset_0_2px_3px_0_rgba(255,255,255,0.35),inset_2px_-4px_4px_0_rgba(0,0,0,0.15)] transition-all hover:opacity-90 active:scale-95"
110
+ >
111
+ Docs
112
+ </a>
113
+ <a
114
+ href="/contact"
115
+ className="btn-3d-secondary inline-flex h-10 items-center justify-center rounded-md bg-secondary px-8 text-sm font-medium text-secondary-foreground shadow-[inset_0_2px_3px_0_rgba(255,255,255,0.45),inset_2px_-4px_4px_0_rgba(0,0,0,0.1)] transition-all hover:opacity-90 active:scale-95"
116
+ >
117
+ Contact Us
118
+ </a>
119
+ </div>
120
+ </div>
121
+
122
+ {/* FAQ Accordion Grid */}
123
+ <div className="grid grid-cols-1 gap-x-12 px-4 pb-24 sm:px-6 lg:grid-cols-2 lg:px-12">
124
+ {/* Left Column - Product */}
125
+ <div className="flex flex-col">
126
+ {productFaqs.map((faq) => (
127
+ <div key={faq.id} className="border-b border-border last:border-0">
128
+ <button
129
+ onClick={() => toggleItem(faq.id)}
130
+ className="flex w-full items-center justify-between py-6 text-left transition-all hover:text-primary"
131
+ >
132
+ <span className="text-base font-medium text-foreground">
133
+ {faq.question}
134
+ </span>
135
+ {openItems[faq.id] ? (
136
+ <Minus className="size-4 shrink-0 text-muted-foreground" />
137
+ ) : (
138
+ <Plus className="size-4 shrink-0 text-muted-foreground" />
139
+ )}
140
+ </button>
141
+ <div
142
+ className={`overflow-hidden transition-all duration-300 ease-in-out ${
143
+ openItems[faq.id] ? "max-h-96 opacity-100 pb-6" : "max-h-0 opacity-0"
144
+ }`}
145
+ >
146
+ <p className="text-sm leading-relaxed text-muted-foreground">
147
+ {faq.answer}
148
+ </p>
149
+ </div>
150
+ </div>
151
+ ))}
152
+ </div>
153
+
154
+ {/* Right Column - Billing */}
155
+ <div className="flex flex-col max-lg:mt-6">
156
+ {billingFaqs.map((faq) => (
157
+ <div key={faq.id} className="border-b border-border last:border-0">
158
+ <button
159
+ onClick={() => toggleItem(faq.id)}
160
+ className="flex w-full items-center justify-between py-6 text-left transition-all hover:text-primary"
161
+ >
162
+ <span className="text-base font-medium text-foreground">
163
+ {faq.question}
164
+ </span>
165
+ {openItems[faq.id] ? (
166
+ <Minus className="size-4 shrink-0 text-muted-foreground" />
167
+ ) : (
168
+ <Plus className="size-4 shrink-0 text-muted-foreground" />
169
+ )}
170
+ </button>
171
+ <div
172
+ className={`overflow-hidden transition-all duration-300 ease-in-out ${
173
+ openItems[faq.id] ? "max-h-96 opacity-100 pb-6" : "max-h-0 opacity-0"
174
+ }`}
175
+ >
176
+ <p className="text-sm leading-relaxed text-muted-foreground">
177
+ {faq.answer}
178
+ </p>
179
+ </div>
180
+ </div>
181
+ ))}
182
+ </div>
183
+ </div>
184
+ </div>
185
+ </div>
186
+ </section>
187
+ );
188
+ }
@@ -0,0 +1,193 @@
1
+ import React from 'react';
2
+ import Image from 'next/image';
3
+
4
+ const FeaturesGrid = () => {
5
+ return (
6
+ <section id="features" className="relative border-b bg-background">
7
+ {/* Header Area */}
8
+ <div className="border-b px-4 sm:px-6 lg:px-8">
9
+ <div className="mx-auto flex max-w-7xl flex-col items-center gap-4 border-x px-4 py-12 sm:px-6 lg:px-8 lg:py-16 text-center">
10
+ <span className="text-primary text-sm font-semibold tracking-wider uppercase">
11
+ FEATURES
12
+ </span>
13
+ <h2 className="max-w-3xl text-3xl font-semibold sm:text-4xl lg:text-4xl">
14
+ Boost your efficiency with an AI agent that eliminates manual work and streamlines your operations.
15
+ </h2>
16
+ </div>
17
+ </div>
18
+
19
+ {/* Bento Grid */}
20
+ <div className="border-b px-4 sm:px-6 lg:px-8">
21
+ <div className="mx-auto max-w-7xl border-x">
22
+ <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
23
+
24
+ {/* Secure & Transparent */}
25
+ <div className="flex flex-col border-b md:border-r p-8 lg:p-10">
26
+ <div className="relative mb-8 flex h-48 w-full items-center justify-center overflow-hidden rounded-xl bg-muted/30">
27
+ <div className="absolute inset-0 flex items-center justify-center opacity-10">
28
+ <div className="grid grid-cols-4 gap-4 text-[10px] font-mono leading-none">
29
+ {Array.from({ length: 40 }).map((_, i) => (
30
+ <div key={i}>AI_SECURE_PROTO_{i}</div>
31
+ ))}
32
+ </div>
33
+ </div>
34
+ <div className="relative z-10 flex h-24 w-20 items-center justify-center">
35
+ <div className="absolute inset-0 bg-foreground/20 blur-xl rounded-full"></div>
36
+ <svg
37
+ viewBox="0 0 24 24"
38
+ fill="none"
39
+ className="h-16 w-16 text-foreground drop-shadow-[0_0_15px_rgba(0,0,0,0.3)]"
40
+ stroke="currentColor"
41
+ strokeWidth="1.5"
42
+ strokeLinecap="round"
43
+ strokeLinejoin="round"
44
+ >
45
+ <path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10" />
46
+ <path d="m9 12 2 2 4-4" />
47
+ </svg>
48
+ </div>
49
+ </div>
50
+ <div className="space-y-4">
51
+ <h3 className="text-xl font-semibold">Secure & Transparent</h3>
52
+ <p className="text-muted-foreground text-sm leading-relaxed">
53
+ Ensures that all workflows are secure with encryption and gives you full transparency into the tasks your AI performs.
54
+ </p>
55
+ </div>
56
+ </div>
57
+
58
+ {/* Smart Workflow Automation */}
59
+ <div className="flex flex-col border-b lg:border-r p-8 lg:p-10">
60
+ <div className="mb-8 flex h-48 w-full items-center justify-center rounded-xl bg-zinc-50">
61
+ <div className="flex flex-col gap-2 w-full max-w-[240px]">
62
+ <div className="flex items-center gap-2 rounded-lg border bg-white p-2 text-xs shadow-sm">
63
+ <span className="text-muted-foreground">Searching the web...</span>
64
+ </div>
65
+ <div className="ml-4 flex flex-col gap-1 rounded-lg border bg-muted/40 p-3 text-[11px] leading-tight">
66
+ <div className="flex items-center gap-2 opacity-50"><div className="h-1 w-1 rounded-full bg-foreground" /> Initializing web search...</div>
67
+ <div className="flex items-center gap-2"><div className="h-1 w-1 rounded-full bg-foreground" /> 2. Scanning web pages...</div>
68
+ <div className="flex items-center gap-2"><div className="h-1 w-1 rounded-full bg-foreground" /> 3. Visiting 5 websites...</div>
69
+ <div className="flex items-center gap-2"><div className="h-1 w-1 rounded-full bg-foreground" /> 4. Analyzing content...</div>
70
+ <div className="flex items-center gap-2"><div className="h-1 w-1 rounded-full bg-foreground" /> 5. Generating summary...</div>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ <div className="space-y-4">
75
+ <h3 className="text-xl font-semibold">Smart Workflow Automation</h3>
76
+ <p className="text-muted-foreground text-sm leading-relaxed">
77
+ Automates repetitive tasks seamlessly across multiple apps, saving you valuable time and effort every single day.
78
+ </p>
79
+ </div>
80
+ </div>
81
+
82
+ {/* Cross-Platform Synchronisation */}
83
+ <div className="flex flex-col border-b md:border-r lg:border-r-0 p-8 lg:p-10">
84
+ <div className="relative mb-8 flex h-48 w-full items-center justify-center rounded-xl bg-muted/30">
85
+ <div className="relative">
86
+ {/* Central Node */}
87
+ <div className="flex h-14 w-14 items-center justify-center rounded-lg bg-foreground text-white shadow-lg ring-4 ring-background">
88
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z" /></svg>
89
+ </div>
90
+ {/* Surrounding Nodes */}
91
+ <div className="absolute -top-10 -left-10 flex h-8 w-8 items-center justify-center rounded-full bg-white border shadow-sm">
92
+ <svg className="size-4 text-muted-foreground" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2"><path d="M4 4h16v16H4z"/></svg>
93
+ </div>
94
+ <div className="absolute -top-12 right-0 flex h-8 w-8 items-center justify-center rounded-full bg-white border shadow-sm">
95
+ <svg className="size-4 text-muted-foreground" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2"><circle cx="12" cy="12" r="10"/></svg>
96
+ </div>
97
+ <div className="absolute -right-12 top-2 flex h-8 w-8 items-center justify-center rounded-full bg-white border shadow-sm">
98
+ <svg className="size-4 text-muted-foreground" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>
99
+ </div>
100
+ {/* Connector Lines (placeholder styling) */}
101
+ <div className="absolute h-px w-12 bg-border -left-8 top-1/2 -rotate-[30deg] -z-10"></div>
102
+ <div className="absolute h-px w-12 bg-border -right-10 top-2 rotate-[15deg] -z-10"></div>
103
+ </div>
104
+ </div>
105
+ <div className="space-y-4">
106
+ <h3 className="text-xl font-semibold">Cross-Platform Synchronisation</h3>
107
+ <p className="text-muted-foreground text-sm leading-relaxed">
108
+ Keeps your tools and apps perfectly synced, ensuring consistency and reliability across your entire workflow.
109
+ </p>
110
+ </div>
111
+ </div>
112
+
113
+ {/* Multi-AI Integration */}
114
+ <div className="flex flex-col border-b md:border-r lg:col-span-2 p-8 lg:p-10">
115
+ <div className="relative mb-8 flex h-56 w-full items-center justify-center overflow-hidden rounded-xl bg-zinc-50">
116
+ <div className="relative w-full max-w-md p-6 bg-white border rounded-2xl shadow-xl flex flex-col gap-4">
117
+ <div className="flex items-center gap-3">
118
+ <div className="h-8 w-8 rounded-full bg-muted flex items-center justify-center">
119
+ <span className="text-[10px] font-bold">GPT</span>
120
+ </div>
121
+ <div className="flex-1 h-3 bg-muted/60 rounded-full max-w-[120px]" />
122
+ </div>
123
+ <div className="space-y-3">
124
+ <div className="h-4 bg-muted/40 rounded w-full" />
125
+ <div className="h-4 bg-muted/40 rounded w-[90%]" />
126
+ </div>
127
+ {/* Floating integration icons */}
128
+ <div className="absolute -top-4 -left-4 flex h-10 w-10 items-center justify-center rounded-full border bg-white shadow-md">
129
+ <Image src="https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/test-clones/73098f9c-15b9-43d6-98e6-96ab2eba390e-shadcn-nextjs-orion-landing-page-vercel-app/assets/images/15-19.webp" alt="tool" width={24} height={24} className="rounded-full" />
130
+ </div>
131
+ <div className="absolute -bottom-4 -right-4 flex h-10 w-10 items-center justify-center rounded-full border bg-white shadow-md">
132
+ <Image src="https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/test-clones/73098f9c-15b9-43d6-98e6-96ab2eba390e-shadcn-nextjs-orion-landing-page-vercel-app/assets/images/18-22.webp" alt="tool" width={24} height={24} className="rounded-full" />
133
+ </div>
134
+ <div className="absolute top-1/2 -right-8 flex h-10 w-10 items-center justify-center rounded-full border bg-white shadow-md">
135
+ <Image src="https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/test-clones/73098f9c-15b9-43d6-98e6-96ab2eba390e-shadcn-nextjs-orion-landing-page-vercel-app/assets/images/16-20.webp" alt="tool" width={24} height={24} className="rounded-full" />
136
+ </div>
137
+ </div>
138
+ </div>
139
+ <div className="space-y-4">
140
+ <h3 className="text-xl font-semibold">Multi-AI Integration</h3>
141
+ <p className="text-muted-foreground text-sm leading-relaxed max-w-2xl">
142
+ Seamlessly integrates with over 100 popular tools and apps, significantly enhancing your workflow and productivity effortlessly every day.
143
+ </p>
144
+ </div>
145
+ </div>
146
+
147
+ {/* Real-Time Notifications */}
148
+ <div className="flex flex-col border-b md:border-r-0 p-8 lg:p-10">
149
+ <div className="mb-8 flex h-56 w-full flex-col gap-2 rounded-xl bg-zinc-50 p-6 overflow-hidden">
150
+ <div className="flex items-center gap-3 rounded-lg border bg-white p-3 shadow-sm scale-95 origin-left">
151
+ <div className="bg-foreground/10 p-1.5 rounded-md">
152
+ <svg className="size-4 text-foreground" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2"><path d="m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"/><circle cx="9" cy="9" r="2"/><path d="M5 21l8-8"/><path d="M21 21L12 12"/></svg>
153
+ </div>
154
+ <div className="flex-1 space-y-1">
155
+ <div className="h-2 w-32 bg-foreground/10 rounded" />
156
+ <div className="h-1.5 w-48 bg-foreground/5 rounded" />
157
+ </div>
158
+ </div>
159
+ <div className="flex items-center gap-3 rounded-lg border bg-white p-3 shadow-sm scale-110 translate-x-4">
160
+ <div className="bg-zinc-200 p-1.5 rounded-md">
161
+ <svg className="size-4 text-zinc-600" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2"><rect width="18" height="18" x="3" y="4" rx="2" ry="2"/><line x1="16" x2="16" y1="2" y2="6"/><line x1="8" x2="8" y1="2" y2="6"/><line x1="3" x2="21" y1="10" y2="10"/></svg>
162
+ </div>
163
+ <div className="flex-1 space-y-1">
164
+ <div className="h-2 w-24 bg-foreground/10 rounded" />
165
+ <div className="h-1.5 w-40 bg-foreground/5 rounded" />
166
+ </div>
167
+ </div>
168
+ <div className="flex items-center gap-3 rounded-lg border bg-white p-3 shadow-sm scale-90 translate-x-2">
169
+ <div className="bg-zinc-300 p-1.5 rounded-md">
170
+ <svg className="size-4 text-zinc-700" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2"><path d="M12 2v20"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
171
+ </div>
172
+ <div className="flex-1 space-y-1">
173
+ <div className="h-2 w-28 bg-foreground/10 rounded" />
174
+ <div className="h-1.5 w-36 bg-foreground/5 rounded" />
175
+ </div>
176
+ </div>
177
+ </div>
178
+ <div className="space-y-4">
179
+ <h3 className="text-xl font-semibold">Real-Time Notifications</h3>
180
+ <p className="text-muted-foreground text-sm leading-relaxed">
181
+ Get instant updates on the status of your workflows, tasks, and deadlines.
182
+ </p>
183
+ </div>
184
+ </div>
185
+
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </section>
190
+ );
191
+ };
192
+
193
+ export default FeaturesGrid;
@@ -0,0 +1,137 @@
1
+ import React from 'react';
2
+ import Link from 'next/link';
3
+ import { Mail } from 'lucide-react';
4
+
5
+ const Footer = () => {
6
+ const currentYear = 2026; // Matching the design year
7
+
8
+ const footerLinks = [
9
+ {
10
+ title: 'Pages',
11
+ links: [
12
+ { label: 'Features', href: '#features' },
13
+ { label: 'Use cases', href: '#use-cases' },
14
+ { label: 'Testimonials', href: '#testimonials' },
15
+ { label: 'Pricing', href: '#pricing' },
16
+ ],
17
+ },
18
+ {
19
+ title: 'Company',
20
+ links: [
21
+ { label: 'About Us', href: '/about' },
22
+ { label: 'Careers', href: '/careers' },
23
+ { label: 'News', href: '/news' },
24
+ { label: 'Media kit', href: '/media' },
25
+ { label: 'Contact', href: '/contact' },
26
+ ],
27
+ },
28
+ {
29
+ title: 'Resources',
30
+ links: [
31
+ { label: 'Blog', href: '/blog' },
32
+ { label: 'Help Center', href: '/help' },
33
+ { label: 'Tutorials', href: '/tutorials' },
34
+ { label: 'Api Docs', href: '/api' },
35
+ { label: 'Community', href: '/community' },
36
+ { label: 'Support', href: '/support' },
37
+ ],
38
+ },
39
+ {
40
+ title: 'Social',
41
+ links: [
42
+ { label: 'X', href: 'https://x.com' },
43
+ { label: 'LinkedIn', href: 'https://linkedin.com' },
44
+ { label: 'Facebook', href: 'https://facebook.com' },
45
+ { label: 'Github', href: 'https://github.com' },
46
+ { label: 'Product Hunt', href: 'https://producthunt.com' },
47
+ ],
48
+ },
49
+ {
50
+ title: 'Legal',
51
+ links: [
52
+ { label: 'Terms of Service', href: '/terms' },
53
+ { label: 'Privacy Policy', href: '/privacy' },
54
+ { label: 'Cookie Policy', href: '/cookies' },
55
+ { label: 'Licenses', href: '/licenses' },
56
+ { label: 'Security', href: '/security' },
57
+ { label: 'Accessibility', href: '/accessibility' },
58
+ ],
59
+ },
60
+ ];
61
+
62
+ return (
63
+ <footer className="w-full bg-background mt-auto">
64
+ {/* Newsletter and Links Section */}
65
+ <div className="border-t px-4 sm:px-6 lg:px-8">
66
+ <div className="mx-auto max-w-7xl border-x px-4 py-16 sm:px-6 lg:px-12">
67
+ {/* Newsletter Section */}
68
+ <div className="flex flex-col lg:flex-row lg:items-start lg:justify-between gap-12 mb-20">
69
+ <div className="max-w-xl">
70
+ <h2 className="text-2xl font-semibold mb-4 text-foreground">Subscribe to our newsletter</h2>
71
+ <p className="text-muted-foreground text-base leading-relaxed">
72
+ Stay in the loop with the latest updates on AI productivity, automation tips, and new features. One email a week no spam, just smart insights.
73
+ </p>
74
+ </div>
75
+ <div className="flex w-full max-w-md items-center gap-2">
76
+ <div className="relative flex-1">
77
+ <input
78
+ type="email"
79
+ placeholder="Your Email"
80
+ className="h-11 w-full rounded-md border border-border bg-white px-4 text-sm outline-none transition-all focus:border-foreground focus:ring-1 focus:ring-foreground"
81
+ />
82
+ </div>
83
+ <button
84
+ type="submit"
85
+ className="h-11 px-6 rounded-md bg-foreground text-white text-sm font-medium shadow-[inset_0_2px_3px_0_rgba(255,255,255,0.15),inset_2px_-4px_4px_0_rgba(0,0,0,0.15)] hover:opacity-90 transition-all active:scale-95"
86
+ >
87
+ Subscribe
88
+ </button>
89
+ </div>
90
+ </div>
91
+
92
+ {/* Site Links Grid */}
93
+ <div className="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-5 gap-y-12 gap-x-8">
94
+ {footerLinks.map((section) => (
95
+ <div key={section.title} className="flex flex-col gap-4">
96
+ <h3 className="text-sm font-semibold text-foreground tracking-wide uppercase">
97
+ {section.title}
98
+ </h3>
99
+ <ul className="flex flex-col gap-3">
100
+ {section.links.map((link) => (
101
+ <li key={link.label}>
102
+ <a
103
+ href={link.href}
104
+ className="text-muted-foreground text-sm hover:text-foreground transition-colors duration-200"
105
+ >
106
+ {link.label}
107
+ </a>
108
+ </li>
109
+ ))}
110
+ </ul>
111
+ </div>
112
+ ))}
113
+ </div>
114
+ </div>
115
+ </div>
116
+
117
+ {/* Copyright Bar */}
118
+ <div className="border-t px-4 sm:px-6 lg:px-8">
119
+ <div className="mx-auto max-w-7xl border-x px-4 h-24 flex items-center justify-between sm:px-6 lg:px-12">
120
+ <div className="flex items-center gap-2.5">
121
+ <div className="bg-foreground p-1.5 rounded-lg flex items-center justify-center shadow-lg">
122
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className="text-white">
123
+ <path d="M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z" fill="currentColor"/>
124
+ </svg>
125
+ </div>
126
+ <span className="text-xl font-semibold text-foreground">Open Engineer</span>
127
+ </div>
128
+ <p className="text-muted-foreground text-sm font-normal">
129
+ &copy;{currentYear} Open Engineer. Made with passion and creativity.
130
+ </p>
131
+ </div>
132
+ </div>
133
+ </footer>
134
+ );
135
+ };
136
+
137
+ export default Footer;
@@ -0,0 +1,105 @@
1
+ import React from 'react';
2
+ import Link from 'next/link';
3
+ import { ChevronDown, MoonStar, Sun, Menu } from 'lucide-react';
4
+
5
+ const Header = () => {
6
+ return (
7
+ <header className="sticky top-0 z-50 h-16 w-full border-b px-4 transition-all duration-300 sm:px-6 lg:px-8 bg-card/75 shadow-xl backdrop-blur">
8
+ <div className="mx-auto flex h-full max-w-7xl items-center justify-between gap-4 border-x border-border px-4 sm:px-6 lg:px-8">
9
+ {/* Logo Section */}
10
+ <a href="#home" className="flex items-center gap-3">
11
+ <div className="flex items-center gap-2">
12
+ <svg
13
+ width="32"
14
+ height="32"
15
+ viewBox="0 0 32 32"
16
+ fill="none"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ className="size-8"
19
+ >
20
+ <rect width="32" height="32" rx="8" fill="#18181B" />
21
+ <path
22
+ d="M16 8L18.5 13.5L24 16L18.5 18.5L16 24L13.5 18.5L8 16L13.5 13.5L16 8Z"
23
+ fill="white"
24
+ />
25
+ </svg>
26
+ <span className="text-xl font-semibold text-foreground tracking-tight">Open Engineer</span>
27
+ </div>
28
+ </a>
29
+
30
+ {/* Desktop Navigation */}
31
+ <nav className="hidden lg:block">
32
+ <ul className="flex items-center gap-2">
33
+ <li>
34
+ <a
35
+ href="#features"
36
+ className="inline-flex h-9 items-center justify-center rounded-md px-3 text-base font-medium text-muted-foreground transition-colors hover:text-primary focus:text-primary"
37
+ >
38
+ Features
39
+ </a>
40
+ </li>
41
+ <li>
42
+ <button
43
+ className="group inline-flex h-9 items-center justify-center rounded-md px-3 text-base font-medium text-muted-foreground transition-colors hover:text-primary focus:text-primary"
44
+ >
45
+ Use cases
46
+ <ChevronDown className="ml-1 size-3 transition-transform duration-300 group-hover:rotate-180" />
47
+ </button>
48
+ </li>
49
+ <li>
50
+ <a
51
+ href="#testimonials"
52
+ className="inline-flex h-9 items-center justify-center rounded-md px-3 text-base font-medium text-muted-foreground transition-colors hover:text-primary focus:text-primary"
53
+ >
54
+ Testimonials
55
+ </a>
56
+ </li>
57
+ <li>
58
+ <a
59
+ href="#pricing"
60
+ className="inline-flex h-9 items-center justify-center rounded-md px-3 text-base font-medium text-muted-foreground transition-colors hover:text-primary focus:text-primary"
61
+ >
62
+ Pricing
63
+ </a>
64
+ </li>
65
+ </ul>
66
+ </nav>
67
+
68
+ {/* Action Buttons */}
69
+ <div className="flex items-center gap-3">
70
+ {/* Theme Toggle Button */}
71
+ <button
72
+ className="relative inline-flex size-9 items-center justify-center rounded-md border border-border bg-background text-sm font-medium shadow-sm transition-all hover:bg-accent hover:text-accent-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
73
+ aria-label="Toggle theme"
74
+ >
75
+ <MoonStar className="size-4 scale-100 dark:scale-0 transition-transform" />
76
+ <Sun className="absolute size-4 scale-0 dark:scale-100 transition-transform" />
77
+ <span className="sr-only">Toggle theme</span>
78
+ </button>
79
+
80
+ {/* Sign Up Button with 3D shadow effect */}
81
+ <a
82
+ href="/register"
83
+ className="inline-flex h-10 items-center justify-center rounded-md px-6 text-base font-medium text-primary-foreground bg-primary transition-all duration-300 hover:bg-primary/90
84
+ shadow-[inset_0_2px_3px_0_rgba(255,255,255,0.15),inset_2px_-4px_4px_0_rgba(0,0,0,0.25),inset_-2px_4px_4px_0_rgba(255,255,255,0.15)]
85
+ hover:shadow-[inset_0_0_0_0_var(--color-primary),inset_1px_-1.5px_2px_0_rgba(0,0,0,0.25),inset_-1px_1.5px_2px_0_rgba(255,255,255,0.15)]"
86
+ >
87
+ Sign up
88
+ </a>
89
+
90
+ {/* Mobile Menu Trigger */}
91
+ <button
92
+ className="inline-flex lg:hidden size-10 items-center justify-center rounded-md bg-primary text-primary-foreground transition-all duration-300 hover:bg-primary/90
93
+ shadow-[inset_0_2px_3px_0_rgba(255,255,255,0.15),inset_2px_-4px_4px_0_rgba(0,0,0,0.25),inset_-2px_4px_4px_0_rgba(255,255,255,0.15)]
94
+ hover:shadow-[inset_0_0_0_0_var(--color-primary),inset_1px_-1.5px_2px_0_rgba(0,0,0,0.25),inset_-1px_1.5px_2px_0_rgba(255,255,255,0.15)]"
95
+ aria-label="Menu"
96
+ >
97
+ <Menu className="size-5" />
98
+ </button>
99
+ </div>
100
+ </div>
101
+ </header>
102
+ );
103
+ };
104
+
105
+ export default Header;