diff --git a/src/pages/projects/project.astro b/src/pages/projects/project.astro deleted file mode 100644 index 7fc9e3b..0000000 --- a/src/pages/projects/project.astro +++ /dev/null @@ -1,90 +0,0 @@ ---- -import '../../styles/project.css' -import BaseLayout from '../../layouts/base.astro' -import Join from '../../components/join.astro' - -interface Stat { - name: string - value: string - icon: string -} - -let projectTitle: string = 'Blender' -let shortDescription: string = - 'Blender is a 120lb full body spinner, featuring a titanium shell with hardened steel impactors.' -let images: string[] = [ - 'https://news.utdallas.edu/news/files/2021/03/battlebots-team-1000-2015-07.jpg', - 'https://news.utdallas.edu/news/files/2021/03/blender-action-680-2015-07.jpg', - 'https://dmn-dallas-news-prod.cdn.arcpublishing.com/resizer/v2/3ZNCABYO4ISX72FQN6UQHOW7FQ.jpg?auth=8db4747323e3d062d21d4dc246eee5b38faef779b4bf95c2131a5822d7419b28&width=1660&quality=40', -] -let stats: Stat[] = [ - { - name: 'Top Driving Speed', - value: '15mph', - icon: '/statsGraphics/double-arrow-right.svg', - }, - { - name: 'Top Spin Speed', - value: '120mph', - icon: '/statsGraphics/rotate-arrow.svg', - }, - { - name: 'Shell Weight', - value: '70lbs', - icon: '/statsGraphics/weight.svg', - }, -] ---- - - -
-
-
-

{projectTitle}

-
- - {shortDescription} - -
- { - stats.map((stat) => ( -
- {stat.name} -

{stat.name}

- {stat.value} -
- )) - } -
-
-
- Blender -
-
-
-

History

-

- Blender was created in 2004 by a group of students at Richardson High - School. In 2007 Blender won BotsIQ. In 2009 Blender won the Battle Bots - High School Champsionship. In 2011 students from Richardson High School - brought the Blender Project to UTD, where it competed in 2013, 2015, - 2017 Robogames. -

-
- {images.map((img) => )} -
-

- After losing a match against the Brazilian robot Touro, Blender was - brought back home in April 2017. While the team was trying to figure out - what went wrong during the match, Blender caught on fire. After this, - Blender was abandoned and the UT Dallas Battlebots team dissolved after - all of the members graduated. -

-
-
- -