Newer
Older
My-Portfolio / frontend / src / constants / index.js
import { linkedin, gitbucket, youtube, instagram, facebook } from "../assets";
import {
  joystick,
  unity,
  dpad,
  controller,
  unreal,
  x,
  gameboy,
} from "../assets";

export const navigation = [
  { id: 0, title: "Home", url: "/#home" },
  { id: 1, title: "About", url: "/#about" },
  { id: 2, title: "Work", url: "/#work" },
  { id: 3, title: "Skills", url: "/#skills" },
  { id: 4, title: "Activity", url: "/#activity" },
  { id: 5, title: "Contact", url: "/#contact" },
];

export const static_social_media = [
  {
    id: 0,
    name: "linkedin",
    url: "https://www.linkedin.com/in/nunoteixeira97/",
    logo: linkedin,
  },

  {
    id: 1,
    name: "gitbucket",
    url: "https://jmpteixeira.myasustor.com:8443/Nuno_Teixeira",
    logo: gitbucket,
  },

  {
    id: 2,
    name: "youtube",
    url: "https://www.youtube.com/@nuno97teixeira",
    logo: youtube,
  },

  {
    id: 3,
    name: "instagram",
    url: "https://www.instagram.com/nuno97teixeira/",
    logo: instagram,
  },

  {
    id: 4,
    name: "facebook",
    url: "https://www.facebook.com/nuno.teixeira.940/",
    logo: facebook,
  },
];

//floating svg's
export const floattingImages = [
  {
    svg: joystick,
    position: { x: "20%", y: "20%" },
    speed: 0.77,
    amplitude: 60,
  },

  {
    svg: unity,
    position: { x: "80%", y: "60%" },
    speed: 0.8,
    amplitude: 40,
  },

  {
    svg: dpad,
    position: { x: "40%", y: "70%" },
    speed: 0.85,
    amplitude: 50,
  },

  {
    svg: controller,
    position: { x: "70%", y: "15%" },
    speed: 0.93,
    amplitude: 32,
  },

  {
    svg: unreal,
    position: { x: "75%", y: "85%" },
    speed: 1.02,
    amplitude: 30,
  },

  {
    svg: x,
    position: { x: "25%", y: "85%" },
    speed: 0.81,
    amplitude: 25,
  },

  {
    svg: gameboy,
    position: { x: "55%", y: "85%" },
    speed: 0.81,
    amplitude: 60,
  },
];