commit 6af35c59f73071e6a0ec971ec3eca747ec71b754 Author: James Pace Date: Mon Jan 8 01:26:48 2024 +0000 Init commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f6bae58 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +_site/ +.quarto/ diff --git a/_quarto.yml b/_quarto.yml new file mode 100644 index 0000000..f00d2d6 --- /dev/null +++ b/_quarto.yml @@ -0,0 +1,22 @@ +project: + type: website + +website: + title: "howl121" + search: false + navbar: + background: "$black" + left: + - href: index.qmd + text: Home + - about.qmd + +format: + html: + theme: + - default + - theme.scss + toc: true + + + diff --git a/about.qmd b/about.qmd new file mode 100644 index 0000000..1179494 --- /dev/null +++ b/about.qmd @@ -0,0 +1,36 @@ +--- +title: "About" +toc: false +--- + +Howl121 fills in the details for low cost robotics and drone components through +honest and meaningful tests and reviews. + +## Problem + +When we're picking out components to build a new robot, we need to understand the +performance of those components so we can make sure they fit our needs. + +Professional grade equipment provides all of the information we need in datasheets, +but professional grade equipment is commonly too expensive for student projects, DIYers, +or individuals building small one off prototypes (like us). + +These individuals rely on much cheaper components which sometimes don't provide any specs, +and when the specs are provided, are of questionable trustworthiness. +This makes it hard to do actual design work before we have to make a purchase. + +Howl121 fills in this missing information by collecting our own measurements for the +specifications you care about for the components you can afford. + +## Draw your own conclusions + +For every component we review, we commit to providing information on the methodologies +we used to collect the information we're presenting with enough detail +that you can draw your own conclusions on the validity of the data we're presenting. + +## Want to work with us? + +We're very open on suggestions on what components to review or what additional +information people on interested in for a component. + +Feel free to contact James at james@how121.com with suggestions or any other inquiries. \ No newline at end of file diff --git a/index.qmd b/index.qmd new file mode 100644 index 0000000..ab1d219 --- /dev/null +++ b/index.qmd @@ -0,0 +1,7 @@ +--- +title: "howl121" +--- + +This is a Quarto website. + +To learn more about Quarto websites visit . diff --git a/theme.scss b/theme.scss new file mode 100644 index 0000000..55fd08b --- /dev/null +++ b/theme.scss @@ -0,0 +1,6 @@ +/*-- scss:defaults --*/ +$black: #000 !default; +$neon: #39ff14 !default; +$white: #FFFF !default; + +$primary: $white !default;