Skip to content

Commit

Permalink
updated project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jiminleeryu committed Nov 10, 2024
1 parent 3f56914 commit d762bd5
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 20 deletions.
23 changes: 23 additions & 0 deletions src/components/Talk.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react';
import './App.css';
import '../styles/talks.css';

function Talk() {
return (
<div>

</div>

);
}

function Talks() {
return (
<div>

</div>

);
}

export default Talks;
15 changes: 0 additions & 15 deletions src/components/Team.jsx

This file was deleted.

23 changes: 23 additions & 0 deletions src/components/TeamMember.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react';
import './App.css';
import '../styles/team.css';

function TeamMember() {
return (
<div>

</div>

);
}

function Team() {
return (
<div>

</div>

);
}

export default Team;
4 changes: 0 additions & 4 deletions src/components/team.css

This file was deleted.

7 changes: 6 additions & 1 deletion src/styles/team.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@
margin: 0;
padding: 0;
height: 100%;
}
}

.team-title{
display: flex;
justify-content: center;
}

0 comments on commit d762bd5

Please sign in to comment.