Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed app/assets/resonate_app.png
Binary file not shown.
Binary file added app/assets/resonate_app.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion app/components/About/About.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import Image from "next/image";
import "./About.css";
import AossieLogo from "../../assets/aossie_logo.png";
import { SiGitlab } from "react-icons/si";
Expand All @@ -10,7 +11,7 @@ const About = () => {
<section className="about">
<div className="about-container">
<div className="about-logo">
<img src={AossieLogo.src} alt="AOSSIE Logo" draggable={false} />
<Image src={AossieLogo} alt="AOSSIE Logo" draggable={false} />
</div>
<div className="about-content">
<h2>
Expand Down
7 changes: 5 additions & 2 deletions app/components/DownloadApp/DownloadApp.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import React from 'react';
import Image from 'next/image';
import './DownloadApp.css';
import StoreButton from './StoreButton';

const DownloadApp = () => {
const playStoreUrl ='https://play.google.com/store/apps/details?id=com.resonate.resonate';
const playStoreUrl = 'https://play.google.com/store/apps/details?id=com.resonate.resonate';

return (
<section className="download-app-section">
Expand All @@ -18,10 +19,12 @@ const DownloadApp = () => {

<div className="qr-code-wrapper">
<div className="qr-glow-container">
<img
<Image
src="/qr_code.png"
alt="Scan to download"
className="qr-code-img"
width={200}
height={200}
/>
</div>
<p className="qr-label">Scan to Download</p>
Expand Down
14 changes: 7 additions & 7 deletions app/components/Features/Features.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import Image from "next/image";
import "./Features.css";
import featureImage1 from "../../assets/roomscreen.png";
import featureImage2 from "../../assets/createrooms.png";
Expand Down Expand Up @@ -40,17 +41,16 @@ const Features = () => {
{featuresData.map((feature) => (
<div
key={feature.id}
className={`feature-item ${
feature.align === "right" ? "reverse" : ""
}`}
className={`feature-item ${feature.align === "right" ? "reverse" : ""
}`}
>
<div className="feature-image">
<img
src={feature.image.src}
<Image
src={feature.image}
alt={`Feature ${feature.id}`}
width={400}
height={300}
sizes="(max-width: 768px) 80vw, 40vw"
draggable={false}
style={{ width: "100%", height: "auto" }}
/>
</div>
<div className="feature-content">
Expand Down
2 changes: 1 addition & 1 deletion app/components/Hero/Hero.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import "./Hero.css";
import { FaGithub, FaArrowRight } from "react-icons/fa";
import phoneImage from "../../assets/resonate_app.png";
import phoneImage from "../../assets/resonate_app.webp";
import Image from "next/image";

const Hero = () => {
Expand Down
3 changes: 3 additions & 0 deletions app/components/Layout/NavBar/Navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
}

.logo-icon {
width: 13.48px;
height: 24px;
margin-right: 10px;
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
}
Expand Down Expand Up @@ -146,11 +147,13 @@
opacity: 0;
transform: translateY(-10px);
}

to {
opacity: 1;
transform: translateY(0);
}
}

.hamburger:focus,
.nav-link:focus,
.download-btn:focus {
Expand Down
4 changes: 2 additions & 2 deletions app/components/Layout/NavBar/index.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"use client";
import React, { useState, useCallback } from "react";
import Image from "next/image";
import "./Navbar.css";
import { FaGithub, FaExternalLinkAlt } from "react-icons/fa";
const Logo = { src: "/resonate_logo_white.png" };

const Navbar = () => {
const [open, setOpen] = useState(false);
Expand All @@ -28,7 +28,7 @@ const Navbar = () => {
onClick={scrollToTop}
style={{ cursor: "pointer" }}
>
<img src={Logo.src} alt="Resonate Logo" className="logo-icon" />
<Image src="/resonate_logo_white.png" alt="Resonate Logo" className="logo-icon" width={40} height={40} />
<span className="logo-text">Resonate</span>
</div>

Expand Down
5 changes: 3 additions & 2 deletions app/components/TechStack/TechStack.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import Image from "next/image";
import "./TechStack.css";
import flutterLogo from "../../assets/Flutter.png";
import appwriteLogo from "../../assets/Appwrite.png";
Expand All @@ -10,10 +11,10 @@ const TechStack = () => {
<h2>TECH STACK</h2>
<div className="tech-logos">
<div className="tech-logo">
<img src={flutterLogo.src} alt="Flutter" draggable={false} />
<Image src={flutterLogo} alt="Flutter" draggable={false} />
</div>
<div className="tech-logo">
<img src={appwriteLogo.src} alt="Appwrite" draggable={false} />
<Image src={appwriteLogo} alt="Appwrite" draggable={false} />
</div>
</div>
</div>
Expand Down