Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed Copyright year to "2025" and change "About" to "About Us" for… #46

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="logo"><a href="./index.html" class="pull-left"><img src="./assets/img/deepchem_logo.png" height="100"></a>
</div>
<ul class="primary-nav">
<li><a href="./about.html">About</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="https://github.com/deepchem/deepchem/tree/master/examples/tutorials">Tutorials</a></li>
<li><a href="https://forum.deepchem.io/">Forums</a></li>
<li><a href="https://gitter.im/deepchem/Lobby">Discuss</a></li>
Expand Down Expand Up @@ -51,11 +51,11 @@ <h2>Getting Started With DeepChem</h2>
Maintained by the DeepChem core team. <br>
Website core gratefully borrowed from https://pytorch.org. <br>
Graphic Design by @aanara <br>
&copy;2017 DeepChem
&copy;2025 DeepChem
</p>
</div>
<ul class="primary-nav">
<li><a href="./about.html">About</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="https://forum.deepchem.io/">Forums</a></li>
<li><a href="https://github.com/deepchem/deepchem/tree/master/examples/tutorials">Tutorials</a></li>
<li><a href="https://gitter.im/deepchem/Lobby">Discuss</a></li>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<div class="logo"><a href="./index.html" class="pull-left"><img src="./assets/img/deepchem_logo.png" height="100"></a>
</div>
<ul class="primary-nav">
<li><a href="./about.html">About</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="https://github.com/deepchem/deepchem/tree/master/examples/tutorials">Tutorials</a></li>
<li><a href="https://forum.deepchem.io/">Forums</a></li>
<li><a href="https://gitter.im/deepchem/Lobby">Discuss</a></li>
Expand Down Expand Up @@ -113,11 +113,11 @@ <h3>Companies &amp; Universities developing DeepChem</h3>
Maintained by the DeepChem core team. <br>
Website core gratefully borrowed from https://pytorch.org. <br>
Graphic Design by @aanara <br>
&copy;2017 DeepChem
&copy;2025 DeepChem
</p>
</div>
<ul class="primary-nav">
<li><a href="./about.html">About</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="https://forum.deepchem.io/">Forums</a></li>
<li><a href="https://github.com/deepchem/deepchem/tree/master/examples/tutorials">Tutorials</a></li>
<li><a href="https://gitter.im/deepchem/Lobby">Discuss</a></li>
Expand Down
7 changes: 4 additions & 3 deletions new-website/deepchem/components/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@ import Logo from "../Logo/Logo";
* @return {JSX.Element} - The JSX representation of the Footer component
*/
function Footer() {
const currentYear = new Date().getFullYear();
return (
<footer className="px-[25px] 2xl:px-[300px] bg-dc-gray py-8 flex flex-col text-dc-light-gray mt-auto">
<div className="flex flex-row justify-center lg:justify-between text-sm lg:text-base flex-1">
<div className="hidden lg:flex flex-col items-start gap-[0.5px]">
<Logo />
<p className="mt-4">Maintained by the DeepChem core team</p>
<p>Design by @kid-116</p>
<p>&copy; DeepChem 2022</p>
<p>&copy; DeepChem {currentYear}</p>
</div>
<div className="flex flex-row gap-8 lg:gap-20 items-start font-light">
<div className="flex flex-col gap-1">
<p className="mb-2 text-white font-normal lg:text-2xl text-lg">
DeepChem
</p>
<Link href="/#get-started">Get Started</Link>
<Link href="/about">About</Link>
<Link href="/about">About Us</Link>
<Link href="/tutorials">Tutorials</Link>
<Link
href="https://github.com/deepchem/deepchem/tree/master/examples"
Expand Down Expand Up @@ -73,7 +74,7 @@ function Footer() {
</div>
</div>
</div>
<p className="text-center mt-8 lg:hidden text-sm">&copy; Deepchem 2022</p>
<p className="text-center mt-8 lg:hidden text-sm">&copy; Deepchem {currentYear}</p>
</footer>
);
}
Expand Down