Giter Club home page Giter Club logo

miguelpimentel.do's Introduction

๐Ÿฆ MiguelPimentel.do

A saturday afternoon at the beach. ๐Ÿ–

code size repository size commits last commit is website up?

This repository contains the source code for my personal website and blog. It is currently built with Astro.

๐Ÿ“‘ Table of Contents

๐Ÿ› ๏ธ Technology

The site uses various technologies cobbled together. Here's some of them:

  • Astro: website build tool that can act as a static site generator.
  • Prettier: an opinionated code formatter.
  • Sass: because CSS can be fun.
  • TypeScript: superset of JavaScript.
  • Husky: Git hooks manager.

๐Ÿ—บ Roadmap

List of things I'm considering doing to/with the site. Here's a good resource on examples for reference.

Show/Hide
  • About page
  • Blog section
  • Notes section
  • Journal page
  • Uses page
  • Now page
  • Meta page
  • 404 error page
  • Projects page
  • RSS feed(s)
  • Syntax Highlighting
  • Fluid typography (with Utopia)
  • Robots.txt
  • Sitemap
  • Tags/Categories
  • Explore other font combinations. (e.g. Lobster)
  • Admonition-style callouts
  • Recent posts/notes/projects
  • GitHub Pages integration (.github/workflows/deploy.yml)(broken styles)
  • Vercel integration (vercel.json)
  • Netlify integration (netlify.toml)
  • HTTP headers

Components

  • Table of Contents (using <details> and <summary>)
  • Card view (used in the Notes section)
  • Theme toggle

Open in StackBlitz Open with CodeSandbox

๐Ÿ”Ž References

Some CSS that I'd like to check out and hopefully implement the parts of it I like on the site.

Show/Hide
:root {
  --accent: 136, 58, 234;
  --accent-light: 224, 204, 250;
  --accent-dark: 49, 10, 101;
  --accent-gradient: linear-gradient(
    45deg,
    rgb(var(--accent)),
    rgb(var(--accent-light)) 30%,
    white 60%
  );
}
html {
  font-family: system-ui, sans-serif;
  background: #13151a;
  background-size: 224px;
}
code {
  font-family:
    Menlo,
    Monaco,
    Lucida Console,
    Liberation Mono,
    DejaVu Sans Mono,
    Bitstream Vera Sans Mono,
    Courier New,
    monospace;
}
.astro-a {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translatex(-50%);
  width: 220px;
  height: auto;
  z-index: -1;
}
.text-gradient {
  background-image: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  background-position: 0%;
}
.instructions {
  margin-bottom: 2rem;
  border: 1px solid rgba(var(--accent-light), 25%);
  background: linear-gradient(
    rgba(var(--accent-dark), 66%),
    rgba(var(--accent-dark), 33%)
  );
  padding: 1.5rem;
  border-radius: 8px;
}
.instructions code {
  font-size: 0.8em;
  font-weight: bold;
  background: rgba(var(--accent-light), 12%);
  color: rgb(var(--accent-light));
  border-radius: 4px;
  padding: 0.3em 0.4em;
}
.instructions strong {
  color: rgb(var(--accent-light));
}
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr));
  gap: 2rem;
  padding: 0;
}
.link-card {
  list-style: none;
  display: flex;
  padding: 1px;
  background-color: #23262d;
  background-image: none;
  background-size: 400%;
  border-radius: 7px;
  background-position: 100%;
  transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.link-card > a {
  width: 100%;
  text-decoration: none;
  line-height: 1.4;
  padding: calc(1.5rem - 1px);
  border-radius: 8px;
  color: white;
  background-color: #23262d;
  opacity: 0.8;
}
h2 {
  margin: 0;
  font-size: 1.25rem;
  transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
p {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.link-card:is(:hover, :focus-within) {
  background-position: 0;
  background-image: var(--accent-gradient);
}
.link-card:is(:hover, :focus-within) h2 {
  color: rgb(var(--accent-light));
}

๐Ÿ’œ Acknowledgements

This project is based on Astro-naut by Steve Frenzel.

ยฉ License

Source code in this repository is available under the MIT License.

miguelpimentel.do's People

Contributors

semanticdata avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.