Skip to content

Commit

Permalink
fix logo iivineri
Browse files Browse the repository at this point in the history
  • Loading branch information
acayseth committed Aug 16, 2023
1 parent d7a2027 commit 9bd8e04
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 134 deletions.
Binary file added public/icons/iivineri.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/icons/logo.png
Binary file not shown.
124 changes: 0 additions & 124 deletions public/icons/logo.svg

This file was deleted.

10 changes: 5 additions & 5 deletions src/_libs/servers/helper.hook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'server-only';
import type { Metadata } from 'next';
import moment from 'moment/moment';

import logo from '@/../public/icons/logo.svg';
import iiVineriLogo from '@/../public/icons/iivineri.png';

import { EDaysOfWeek } from '@/types/enums/days-of-week';
import type { IGiphy } from '@/types/interfaces/giphy';
Expand Down Expand Up @@ -53,15 +53,15 @@ export function userHelperHook() {
colorScheme: 'dark',
creator: 'MD Prodacșăn',
robots: { follow: robots, index: robots },
icons: logo,
icons: iiVineriLogo.src,
openGraph: {
images: giphy?.data?.images?.downsized_large?.url || `${process.env.NEXT_PUBLIC_PROJECT_URL}${logo.src}`,
url: giphy?.data?.images?.downsized_large?.url || `${process.env.NEXT_PUBLIC_PROJECT_URL}${logo.src}`,
images: giphy?.data?.images?.downsized_large?.url || `${process.env.NEXT_PUBLIC_PROJECT_URL}${iiVineriLogo.src}`,
url: giphy?.data?.images?.downsized_large?.url || `${process.env.NEXT_PUBLIC_PROJECT_URL}${iiVineriLogo.src}`,
videos,
description,
},
twitter: {
images: giphy?.data?.images?.downsized_large?.url || `${process.env.NEXT_PUBLIC_PROJECT_URL}${logo.src}`,
images: giphy?.data?.images?.downsized_large?.url || `${process.env.NEXT_PUBLIC_PROJECT_URL}${iiVineriLogo.src}`,
description,
},
keywords: [
Expand Down
6 changes: 3 additions & 3 deletions src/components/pages/home/home.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ interface IProps {
}

const timelines = [
{ date: '2023', message: 'Realizat cu ajutorul tehnologiilor extraordinar de avansate: nodejs, typescript, nextjs, tailwindcss, git, docker, CI/CD' },
{ date: '2020', message: 'Realizat cu ajutorul tehnologiilor extraordinar de avansate: angular, angular-material' },
{ date: '2023', message: 'Realizat cu ajutorul: nodejs, typescript, nextjs, tailwindcss, git, docker, CI/CD' },
{ date: '2020', message: 'Realizat cu ajutorul: angular, angular-material' },
{ date: '2017', message: 'Realizat cu ajutorul tehnologiilor extraordinar de avansate: js, js, js, js, nodejs' },
{ date: '2012', message: 'Realizat cu ajutorul tehnologiilor extraordinar de avansate: Spring, Hibernate, HTML5, JMS, EhCache.' }
{ date: '2012', message: 'Realizat cu ajutorul tehnologiilor extraordinar de avansate: Spring, Hibernate, HTML5, JMS, EhCache.' },
];

export default function HomeComponent({ giphy }: IProps) {
Expand Down
4 changes: 2 additions & 2 deletions src/components/ui/navbar/navbar.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Image from 'next/image';
import Link from 'next/link';
import React from 'react';

import logo from '@/../public/icons/logo.png';
import iiVineriLogo from '@/../public/icons/iivineri.png';
import githubLogo from '@/../public/icons/github.svg';

export default function NavbarComponent() {
Expand All @@ -13,7 +13,7 @@ export default function NavbarComponent() {
<div className="flex-1 flex justify-center mr-auto"> </div>
<div className="mx-12 px-12 relative">
<Link href="/" className="">
<Image src={logo.src} width={95} height={24} alt="Îi vineri?" />
<Image src={iiVineriLogo.src} width={95} height={24} alt="Îi vineri?" />
<span className="absolute -top-2 right-11 flex h-5 w-5">
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-white opacity-75"></span>
</span>
Expand Down

0 comments on commit 9bd8e04

Please sign in to comment.