Skip to content

Commit

Permalink
Steps ui improved
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanmahe committed Nov 7, 2024
1 parent f4f78ef commit f060bbf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'export', // This is key for static export
images: {
unoptimized: true,
remotePatterns: [
Expand All @@ -10,7 +11,6 @@ const nextConfig = {
},
],
},
output: "export",
};
/* module.exports = nextConfig*/
export default nextConfig;
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"export": "next export"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.0",
Expand Down
8 changes: 4 additions & 4 deletions src/components/LandingComp/Steps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ import { Card, CardContent } from '../ui/card';
const CardSlider = () => {
const cards = [
{
title: "Gather Hardware",
title: "Hardware",
description: "Take a development board, BioAmp hardware, cables & electrodes. Make the connections.",
image: "/steps/step1.png",
},
{
title: "Upload The Code",
title: "Firmware",
description: "Upload the provided code to your development board using Arduino IDE.",
image: "/steps/step2.png",
},
{
title: "Start Visualizing",
title: "Connection",
description: "Open Chords, click connect, choose COM port and start visualizing the signals.",
image: "/steps/step3.png",
},
{
title: "Monitor Performance",
title: "Visualization",
description: "Keep an eye on the system performance and make necessary adjustments.",
image: "/steps/step4.png",
},
Expand Down

0 comments on commit f060bbf

Please sign in to comment.