Skip to content
View fredrikbergqvist's full-sized avatar

Block or report fredrikbergqvist

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
fredrikbergqvist/README.md

👋 Hi there, I'm Fredrik

I'm a web developer with more than 25 years of experience. I used to do .NET but these days it's all about frontend, React and Next.js 😁

Occationaly I write blog posts at my personal homepage: www.bergqvist.it and if you want to reach me I'm on Bluesky as fbergqvist.bsky.social

Pinned Loading

  1. How to create an RSS feed for next.js How to create an RSS feed for next.js
    1
    import React from "react";
    2
    import { NextPageContext } from "next";
    3
    
                  
    4
    const blogPostsRssXml = (blogPosts: IBlogPost[]) => {
    5
      let latestPostDate: string = "";
  2. A sitemap example for next.js A sitemap example for next.js
    1
    import { NextPageContext } from "next";
    2
    
                  
    3
    const blogPostsXml = (blogPosts: IBlogPostListItem[]) => {
    4
      let latestPost = 0;
    5
      let postsXml = "";
  3. Examples of TypeScript with React, R... Examples of TypeScript with React, Redux and Material UI
    1
    import * as React from "react";
    2
    
                  
    3
    interface OwnProps {
    4
      myProp:string;
    5
    }
  4. Modal Modal Public

    A web component modal aimed to be used in .MD files, but has a place in any context

    JavaScript