Skip to content

Commit 8f2af33

Browse files
Merge pull request #38 from SteveLin100132/feat/official-website
feat: enhance HowToUseSection with wireframe image preloading and tab functionality
2 parents 2baf61e + 653bb2d commit 8f2af33

File tree

12 files changed

+896
-185
lines changed

12 files changed

+896
-185
lines changed
54.9 MB
Loading
24 MB
Loading
1.26 MB
Loading
3.61 MB
Loading

website/src/App.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import FeaturesSection from "./components/FeaturesSection";
55
import Footer from "./components/Footer";
66
import { useScrollAnimation } from "./hooks/useScrollAnimation";
77
import TechStackSection from "./components/TechStackSection";
8+
import HowToUseSection from "./components/HowToUseSection";
89

910
function App() {
1011
useScrollAnimation();
@@ -33,7 +34,7 @@ function App() {
3334
<HeroSection />
3435
<FeaturesSection />
3536
<TechStackSection />
36-
{/* <HowToUseSection /> */}
37+
<HowToUseSection />
3738
</main>
3839
<Footer />
3940
</div>

website/src/components/FeaturesSection.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ const QueryBuilderWireframe: React.FC = () => {
3131
<div className="p-4 space-y-4">
3232
{/* Filter Row 1 */}
3333
<div className="flex items-center gap-2">
34-
<div className="flex-shrink-0 text-xs text-amber-600 bg-amber-100 border border-amber-300 px-2 py-1 rounded text-center font-medium w-[36px]">
34+
<div className="flex-shrink-0 text-xs text-amber-600 bg-amber-100 border border-amber-300 px-2 py-1 rounded text-center font-medium">
3535
AND
3636
</div>
3737
<div className="flex items-center gap-2 flex-1">
3838
<div className="px-3 py-1.5 bg-gray-100 border border-gray-300 rounded text-xs text-gray-600 w-[65px] text-center">
39-
Property
39+
Date
4040
</div>
4141
<div className="px-3 py-1.5 bg-gray-100 border border-gray-300 rounded text-xs text-gray-600 w-[55px] text-center">
42-
equals
42+
after
4343
</div>
4444
<div className="px-3 py-1.5 bg-gray-100 border border-gray-300 rounded text-xs text-gray-600 flex-1 text-center">
4545
Value
@@ -54,7 +54,7 @@ const QueryBuilderWireframe: React.FC = () => {
5454
<div className="flex items-center gap-2">
5555
<div className="flex-shrink-0 w-[36px]"></div>
5656
<div className="flex items-center gap-2 flex-1">
57-
<div className="px-3 py-1.5 bg-gray-100 border border-gray-300 rounded text-xs text-gray-600 w-[65px] text-center">
57+
<div className="px-3 py-1.5 ml-2 bg-gray-100 border border-gray-300 rounded text-xs text-gray-600 w-[65px] text-center">
5858
Status
5959
</div>
6060
<div className="px-3 py-1.5 bg-gray-100 border border-gray-300 rounded text-xs text-gray-600 w-[55px] text-center">
@@ -78,7 +78,7 @@ const QueryBuilderWireframe: React.FC = () => {
7878

7979
{/* Sub-group Filter 1 */}
8080
<div className="flex items-center gap-2">
81-
<div className="flex-shrink-0 text-xs text-purple-600 bg-purple-100 border border-purple-300 px-1.5 py-1 rounded text-center font-medium min-w-[28px]">
81+
<div className="flex-shrink-0 text-xs text-purple-600 bg-purple-100 border border-purple-300 px-1.5 py-1 rounded text-center font-medium min-w-[42px]">
8282
OR
8383
</div>
8484
<div className="flex items-center gap-2 flex-1">

0 commit comments

Comments
 (0)