Skip to content

Commit

Permalink
fix solution
Browse files Browse the repository at this point in the history
  • Loading branch information
vearony committed Jan 20, 2025
1 parent 1d7ceeb commit bb8ab2a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import Article from './components/Article/Article';
import Welcome from './components/Welcome/Welcome';
import Header from './components/Header/Header';
import Welcome from './components/Welcome/Welcome';
import './App.css';

function App() {
Expand Down
24 changes: 13 additions & 11 deletions src/components/Navigation/Navigation.jsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import './Navigation.css';

function Navigation() {
<nav className="navigation">
<a className="navigation__link" href="#about">
About
</a>
<a className="navigation__link" href="#services">
Services
</a>
<a className="navigation__link" href="#contact">
Contact
</a>
</nav>;
return (
<nav className="navigation">
<a className="navigation__link" href="#about">
About
</a>
<a className="navigation__link" href="#services">
Services
</a>
<a className="navigation__link" href="#contact">
Contact
</a>
</nav>
);
}

export default Navigation;

0 comments on commit bb8ab2a

Please sign in to comment.