Git Product home page Git Product logo

bioopen's Introduction

LinksforAll

Open source link page with custom filters to keep all your links in one place.

Deploy with Vercel

linksforall

Demo

Description

Linksforall is a all in one open-source links page with optionally categories filter to better link sort with infinite possibilities.

Get started

This project was created on NextJS with Typescript and Tailwind CSS. Icons from Phosphoricons lib

  1. Begin installing all dependencies:
npm run install
# or
yarn
  1. Run dev command to load nextjs
npm run dev
  1. Open local URL
http://localhost:3000

Base structure

Content location

All content are located in:

./src/lib/links.json
./src/lib/categories.json
./src/lib/user.json

Links

Links are array with the following structure:

name type description
label string label visible on page
categoryId string optional id from category
url string url from link
[
  {
    "label": "Open-source link page",
    "categoryId": "projects",
    "url": "https://github.com/itbruno/linksforall"
  }
]

Categories (optional)

Categories are optional to filter links, keep the array empty if you don't use.

name type description
label string label visible on page
id string category identifier
[
  {
    "label": "Projects",
    "id": "projects"
  }
]

User

The user file is all personal content from page, feel free to create/update new fields and use in your page.

name type description
fullname string Page name
website string optional website url
role string Your role
bio string short description about you
image string profile image
socialLinks object object with social media links
[
  "fullname": "Bruno Rodrigues",
  "website": "https://itbruno.com.br",
  "role": "UI Designer & Front-end dev",
  "bio": "UI Designer and Front-end developer, based on Brazil and working at Nuvemshop",
  "image": "https://avatars3.githubusercontent.com/u/3206543?s=400&u=10401f6bec19f1675f77a45ee9b40bfb1a293367&v=4",

  "socialLinks": {
    "twitter": "https://twitter.com/_brunoweb",
    "linkedin": "https://linkedin.com/in/itbruno",
    "github": "https://github.com/itbruno",
    "medium": "https://medium.com/@itbruno",
    "facebook": "",
    "youtube": "",
    "instagram": "",
    "dribbble": "https://dribbble.com/itbruno"
  }
]

Themes

Here is the best part, you can use the current themes or create your own. Use your creativity and/or tech skill to generate awesome themes.

We have 2 custom themes: Alpha e Dracula (based on Dracula dark theme from Zeno Rocha)

Themes are located in:

./src/themes/[THEME_NAME]

To use your theme, after created you can import in ./src/index.tsx

...
import { Alpha } from '@themes/alpha';
import { DATA } from '@lib/data';

export default function Home() {
  const { user } = DATA;
  return (
    <>
      ...
      <Alpha data={DATA} />
    </>
  );
}

Environment variables - SEO

We have Google Analytics 4 pre-configured in the project. And you don't need touch in code to setup, it simple: To use local, create .env.local file at root project directory with your GA4 id:

# .env.local
NEXT_PUBLIC_GA4_ID=G-AAA0001112T

Design

Some themes are availbale with Figma

Current version

GitHub tag (latest SemVer)

bioopen's People

Contributors

olimpa avatar

Stargazers

 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.