Skip to content

Commit

Permalink
Added Brand Center Page
Browse files Browse the repository at this point in the history
Signed-off-by: Hemashree M S <[email protected]>
  • Loading branch information
Hemashree21 committed May 24, 2024
1 parent c255f86 commit 08741c4
Show file tree
Hide file tree
Showing 10 changed files with 70 additions and 2 deletions.
Binary file added public/assets/brand.avif
Binary file not shown.
Binary file added public/assets/care.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/caretaker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/guidelines.webp
Binary file not shown.
Binary file added public/assets/reliable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions src/Pages/BrandCenter.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import React from 'react';
import brand from "../../public/assets/brand.avif";
import guidelines from '../../public/assets/guidelines.webp';
import care from '../../public/assets/care.png';
import caretaker from '../../public/assets/caretaker.png';
import reliable from '../../public/assets/reliable.png';
import '../styles/BrandCenter.css';

const BrandCenter = () => {
return (
<>
<div className='w-full p-10 font-bold text-grey-500 text-5xl text-center bg-blue-300'>Nacto Care Brand Centre</div>
<div className='flex mt-20 flex-col w-10/12 m-auto gap-40 pb-40'>
<div className='flex justify-between'>
<div className='w-1/2'>
<h2 className='text-3xl font-bold'>Welcome!</h2><br/>
<p className='font-semibold'>At Nacto Care, our brand represents our core values and commitment to exceptional care. We believe in presenting a unified brand appearance, with compelling stories and design that authentically reflect our identity.</p><br/>
<p>Our brand assets reflect our dedication to providing compassionate and professional care to our clients, ensuring consistency and trustworthiness in every interaction. Our brand embodies our dedication to excellence and compassion, ensuring that every aspect of our identity reflects our commitment to exceptional care.</p>
</div>
<div className='w-2/5'><img src={brand} alt="" className='w-full'/></div>
</div>
<div className='flex justify-between items-center'>
<div className='w-2/5 flex items-start justify-center'><img width={70} src="\assets\icon.png" alt="Logo" className='h-2/3 w-2/3'/></div>
<div className='w-1/2'>
<h2 className='text-3xl font-bold'>Download Brand Assets</h2><br/>
<p>Download our brand assets to access high-quality logos, images, fonts, and design elements. These assets adhere to our brand guidelines, ensuring consistency and professionalism in your communications. Whether you're creating posters, brochures, or digital content, our brand assets will help you maintain the integrity of our brand identity across all channels.</p><br/>
<a href="\assets\icon.png" className='text-blue-800 underline font-semibold link' download>Click here to Download Logo</a>
</div>
</div>
<div className='flex justify-between items-center'>
<div className='w-1/2'>
<h2 className='text-3xl font-bold'>Guidelines</h2><br/>
<p>Here you will find our comprehensive brand guidelines, designed to help you create various communication assets such as posters, brochures, roll-ups, site signages, and imagery. These guidelines ensure consistency in our visual and verbal identity across all platforms, maintaining a cohesive and professional brand image. Our brand guidelines cover key aspects including logo usage, color palette, typography, imagery style, and tone of voice, empowering you to effectively represent our brand in all communications.</p><br/>
<a href="/guidelines" className='text-blue-800 underline font-semibold link'>Read more</a>
</div>
<div className='w-2/5'><img src={guidelines} alt="" className='w-full'/></div>
</div>
<div className='flex bg-blue-950 justify-between py-10 w-full rounded-md'>
<div className='w-1/3 flex flex-col items-center justify-center image-container'><img src={reliable} alt="" className='w-40 h-40'/><p className='font-bold text-2xl text-white mt-5 text-center'>100% Reliable</p><p className='text-large text-white text-center'>Trust and Safety Assurance</p></div>
<div className='w-1/3 flex flex-col items-center justify-center image-container'><img src={care} alt="" className='w-40 h-40'/><p className='font-bold text-2xl text-white mt-5 text-center'>Expert Care</p><p className='text-large text-white text-center'>Highly Qualified Nurses you can count on</p></div>
<div className='w-1/3 flex flex-col items-center justify-center image-container'><img src={caretaker} alt="" className='w-40 h-40'/><p className='font-bold text-2xl text-white mt-5 text-center'>Consistent Support</p><p className='text-large text-white text-center'>Seamless Continuity of Caregiving</p></div>
</div>
</div>
</>
)
}

export default BrandCenter;
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function Footer() {
</a>
</li>
<li className="mb-4">
<a href="#" className="hover:underline">
<a href="/ourbrand" className="hover:underline">
Brand Center
</a>
</li>
Expand Down
2 changes: 2 additions & 0 deletions src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ import Blogs from "./Pages/Blogs.jsx";
import PrivacyPolicy from "./Pages/PrivacyPolicy.jsx";
import Licensing from "./Pages/Licensing.jsx";
import TermsAndConditions from "./Pages/TermsAndConditions.jsx";
import BrandCenter from "./Pages/BrandCenter.jsx";

const router = createBrowserRouter(
createRoutesFromElements(
<Route path="/" element={<Layout />}>
<Route path="" element={<LandingPage />} />
<Route path="careers" element={<CareersPage />} />
<Route path="contact" element={<ContactPage />} />
<Route path="ourbrand" element={<BrandCenter />} />
<Route path="login" element={<LoginPage />} />
<Route path="signup" element={<SignupPage />} />
<Route path="about" element={<AboutPage />} />
Expand Down
2 changes: 1 addition & 1 deletion src/styles/AboutPage.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@
.about-us-community, .about-us-event, .about-us-location, .about-us-product {
width: 45%;
}
}
}
18 changes: 18 additions & 0 deletions src/styles/BrandCenter.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.link {
transition: color 0.3s ease;
}

.link:hover {
color: #5a0dd5;
}

.image-container {
transition: transform 0.3s ease-in-out;
}

.image-container:hover {
transform: scale(1.1);
transition: transform 0.3s ease-in-out;
}


0 comments on commit 08741c4

Please sign in to comment.