import React from "react" import Layout from "../layouts/default"; import { Trans, Link, useI18next } from "gatsby-plugin-react-i18next" import { graphql } from 'gatsby' import styles from "./social.module.scss"; export const query = graphql` query AllSocialsQuery { allSocialsJson { nodes { image platformHandle platformName url } } } ` export default function SocialPage({data}) { const {t} = useI18next(); return (
); }