import Image from "next/image"; import dynamic from "next/dynamic"; import type { Metadata, Viewport } from "next"; const Download = dynamic(() => import("@/components/download"), { ssr: false }); import { generalMetadata, generalViewport } from "@/helpers/metadata"; export const metadata: Metadata = { ...generalMetadata, title: "FeedDeck - Follow your RSS and Social Media Feeds", }; export const viewport: Viewport = generalViewport; export default function Home() { return (

Follow your RSS and Social Media Feeds

FeedDeck is an open source RSS and social media feed reader, inspired by TweetDeck. FeedDeck allows you to follow your favorite feeds in one place on all platforms.

Sign In
Hero
All your favorite feeds in one place
Sign In
); } const Feature = ( { title, description, imageDesktop, imageMobile }: { title: string; description: string; imageDesktop: string; imageMobile: string; }, ) => (
{title}
{description}
Feature
); const FeatureNoBg = ( { title, description, image }: { title: string; description: string; image: string; }, ) => (
{title}
{description}
Feature
); const FourChan = () => (
4chan
); const GitHub = () => (
GitHub
); const GoogleNews = () => (
Google News
); const Lemmy = () => (
Lemmy
); const Mastodon = () => (
Mastodon
); const Medium = () => (
Medium
); const Pinterest = () => (
Pinterest
); const Reddit = () => (
Reddit
); const RSS = () => (
RSS
); const StackOverflow = () => (
StackOverflow
); const Tumblr = () => (
Tumblr
); const YouTube = () => (
YouTube
);