Skip to content

Commit 0f3defe

Browse files
committed
fix: final touches before 0.1.0 release
1 parent 064c2e2 commit 0f3defe

4 files changed

Lines changed: 4 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@
4040
- Choose between Manual (default) and Autoplay control modes
4141
- Adjust animation speed (Slow, Medium, Fast, Very Fast)
4242
- **Algorithm Analysis**: Interactive complexity panel with Big-O notation and performance graphs
43-
- **Educational Content**: Real-world use cases and detailed algorithm descriptions
44-
- **Python Code Examples**: View, copy, and download Python implementations (sorting algorithms)
43+
- **Python Code Examples**: View Python implementations
4544
- **Responsive Design**: Works seamlessly on desktop and mobile devices
4645
- **Smooth Animations**: Powered by Framer Motion for fluid transitions
4746
- **Real-time Description**: Step-by-step explanation of algorithm operations
48-
- **Accessibility**: Full keyboard navigation and screen reader support
4947

5048
## Installation
5149

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We actively support the following versions of Bayan Flow:
66

77
| Version | Supported |
88
| ------- | ------------------ |
9-
| 0.0.x | :white_check_mark: |
9+
| 0.1.x | :white_check_mark: |
1010

1111
## Reporting a Vulnerability
1212

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"homepage": "https://bayanflow.netlify.app",
3030
"private": true,
31-
"version": "0.0.1",
31+
"version": "0.1.0",
3232
"type": "module",
3333
"engines": {
3434
"node": ">=18.0.0",

src/components/Footer.jsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ function Footer() {
1414
const repoOwner = 'ayoub3bidi';
1515
const repoName = 'bayan-flow';
1616
const authorName = 'Ayoub Abidi';
17-
const authorGithub = 'ayoub3bidi';
1817
const bmcUsername = 'ayoub3bidi';
1918

2019
useEffect(() => {
@@ -179,9 +178,7 @@ function Footer() {
179178
<p className="text-xs text-text-secondary text-center">
180179
© {currentYear}{' '}
181180
<motion.button
182-
onClick={() =>
183-
handleLinkClick(`https://github.com/${authorGithub}`)
184-
}
181+
onClick={() => handleLinkClick('https://ayoub3bidi.me')}
185182
className="font-semibold text-text-primary hover:text-[#3b82f6] transition-colors underline decoration-dotted underline-offset-2"
186183
whileHover={{ scale: 1.05 }}
187184
whileTap={{ scale: 0.95 }}

0 commit comments

Comments
 (0)